feat(main): main
This commit is contained in:
21
core/migrations/0006_channel_requires_auth.py
Normal file
21
core/migrations/0006_channel_requires_auth.py
Normal file
@@ -0,0 +1,21 @@
|
||||
# Generated by Django 6.0.3 on 2026-03-10 12:44
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("core", "0005_mediasource_max_age_days_and_more"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="channel",
|
||||
name="requires_auth",
|
||||
field=models.BooleanField(
|
||||
default=False,
|
||||
help_text="If True, only signed-in users can stream or fetch schedules for this channel.",
|
||||
),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user