Browse Source
feat: add atomic assign-items endpoints for video and podcast playlists and update author ordering
master
feat: add atomic assign-items endpoints for video and podcast playlists and update author ordering
master
6 changed files with 92 additions and 3 deletions
-
17apps/library/migrations/0009_alter_author_options.py
-
2apps/library/models.py
-
2apps/library/views.py
-
2apps/library/views_admin.py
-
36apps/podcast/views_admin.py
-
36apps/video/views_admin.py
@ -0,0 +1,17 @@ |
|||
# Generated by Django 4.2.30 on 2026-08-27 11:03 |
|||
|
|||
from django.db import migrations |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('library', '0008_alter_author_slug_alter_book_slug_and_more'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterModelOptions( |
|||
name='author', |
|||
options={'ordering': ['-created_at', '-id'], 'verbose_name': 'Author', 'verbose_name_plural': 'Authors'}, |
|||
), |
|||
] |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue