adds prod container and fixes build issues

This commit is contained in:
2025-08-03 11:38:09 +02:00
parent 1aa28f978d
commit 898e275809
6 changed files with 25 additions and 5 deletions
+2
View File
@@ -2,7 +2,9 @@ from rest_framework.views import APIView
from rest_framework.response import Response
from django.contrib.auth.models import User
from playlist.serializers import UserSerializer
from drf_spectacular.utils import extend_schema
@extend_schema(responses={200: UserSerializer})
class UserListView(APIView):
def get(self, request):
users = User.objects.all()