[videos] Add Twitch video scrobbling
All checks were successful
build & deploy / test (push) Successful in 1m51s
build & deploy / deploy (push) Successful in 26s

This commit is contained in:
2026-04-01 12:09:05 -04:00
parent 9ce6dd8876
commit ce7128c7ac
4 changed files with 128 additions and 3 deletions

View File

@ -0,0 +1,39 @@
# Generated by Django 4.2.29 on 2026-04-01 16:05
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("videos", "0027_video_tags"),
]
operations = [
migrations.AddField(
model_name="channel",
name="twitch_id",
field=models.CharField(blank=True, max_length=255, null=True),
),
migrations.AddField(
model_name="video",
name="twitch_id",
field=models.CharField(blank=True, max_length=255, null=True),
),
migrations.AlterField(
model_name="video",
name="video_type",
field=models.CharField(
choices=[
("U", "Unknown"),
("E", "TV Episode"),
("M", "Movie"),
("S", "Skate Video"),
("Y", "YouTube Video"),
("T", "Twitch Video"),
],
default="U",
max_length=1,
),
),
]