Add unblacklist functionality for group music and update URLs
This commit is contained in:
parent
5e394a8c03
commit
0a930e575c
3 changed files with 34 additions and 4 deletions
|
@ -22,10 +22,15 @@ urlpatterns = [
|
|||
name="group_add_member",
|
||||
),
|
||||
path(
|
||||
"group/remove_music/<int:pk>/",
|
||||
"group/<int:pk>/remove_music/",
|
||||
views.GroupRemoveMusicView.as_view(),
|
||||
name="group_remove_music",
|
||||
),
|
||||
path(
|
||||
"group/<int:pk>/unblacklist_music/",
|
||||
views.GroupUnblacklistMusicView.as_view(),
|
||||
name="group_unblacklist_music",
|
||||
),
|
||||
path(
|
||||
"group/<int:pk>/remove_game/",
|
||||
views.GroupRemoveGameView.as_view(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue