Skip to content
Snippets Groups Projects
Verified Commit 17cb614c authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

fix: consistency matters

parent 1878b38a
No related branches found
No related tags found
1 merge request!59Add playlists
......@@ -19,8 +19,8 @@ class Migration(migrations.Migration):
("add__line", "Can add line media-source"),
("add__m3ufile", "Can add m3u media-source"),
("add__stream", "Can add stream media-source"),
("create__playlist", "Can create playlist"),
("update__playlist", "Can update playlist"),
("create_playlist", "Can create playlist"),
("update_playlist", "Can update playlist"),
]
},
),
......
......@@ -596,8 +596,8 @@ class Playlist(models.Model):
("add__m3ufile", "Can add m3u media-source"),
("add__stream", "Can add stream media-source"),
# overrules ownership
("create__playlist", "Can create playlist"),
("update__playlist", "Can update playlist"),
("create_playlist", "Can create playlist"),
("update_playlist", "Can update playlist"),
]
def __str__(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment