This commit is contained in:
Petitminion 2025-05-07 15:46:22 +02:00 committed by petitminion
parent f000eef6dc
commit 0b7d6abc18
2 changed files with 3 additions and 3 deletions

View File

@ -250,7 +250,7 @@ class PlaylistViewSet(
serializer = music_serializers.AlbumSerializer(releases, many=True) serializer = music_serializers.AlbumSerializer(releases, many=True)
return Response(serializer.data, status=200) return Response(serializer.data, status=200)
@extend_schema(operation_id="get_playlist_artits") @extend_schema(operation_id="get_playlist_artists")
@action(methods=["get"], detail=True) @action(methods=["get"], detail=True)
@transaction.atomic @transaction.atomic
def artists(self, request, *args, **kwargs): def artists(self, request, *args, **kwargs):

View File

@ -2,8 +2,8 @@
### The Issue ### The Issue
- Has a user I want to share a list of tracks privately to my friends - As a user I want to share a list of tracks privately to my friends
- Has a user I want to have a single container to curate my content (not playlist and libraries, only playlists) - As a user I want to have a single container to curate my content (not playlist and libraries, only playlists)
### Proposed Solution ### Proposed Solution