mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 03:59:17 +02:00
Replaced is_public flag by brand new privacy_level field on playlists
This commit is contained in:
parent
9fdbc7b859
commit
859f8a0570
4 changed files with 27 additions and 3 deletions
|
@ -5,7 +5,7 @@ from . import models
|
|||
|
||||
@admin.register(models.Playlist)
|
||||
class PlaylistAdmin(admin.ModelAdmin):
|
||||
list_display = ['name', 'user', 'is_public', 'creation_date']
|
||||
list_display = ['name', 'user', 'privacy_level', 'creation_date']
|
||||
search_fields = ['name', ]
|
||||
list_select_related = True
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue