6 changed files with 79 additions and 5 deletions
-
18apps/course/migrations/0012_courselivesession_recording_title.py
-
7apps/course/models/live_session.py
-
11apps/course/signals.py
-
1apps/course/urls.py
-
45apps/course/views/live_session.py
-
2apps/course/views/webhook.py
@ -0,0 +1,18 @@ |
|||
# Generated by Django 5.2.12 on 2026-06-10 12:29 |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('course', '0011_coursecategory_icon'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AddField( |
|||
model_name='courselivesession', |
|||
name='recording_title', |
|||
field=models.CharField(blank=True, help_text='Custom title specified by the professor for the recording/lesson.', max_length=255, null=True, verbose_name='Recording Title'), |
|||
), |
|||
] |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue