Compare commits
No commits in common. "bfc58e74a9f8188e2548127135edb65ce7f19f03" and "9f7b813292405661811887865e63da1b7acf9118" have entirely different histories.
bfc58e74a9
...
9f7b813292
@ -21,5 +21,4 @@ class GameSerializer(serializers.ModelSerializer):
|
||||
return "waiting"
|
||||
|
||||
def get_players_id(self, instance: GameModel):
|
||||
players_id = [player_game.player_id for player_game in GameMembersModel.objects.filter(game_id = instance.pk)]
|
||||
return players_id
|
||||
players_id = [player_game.member_id for player_game in GameMembersModel.objects.filter(game_id=instance.pk)]
|
@ -1,9 +0,0 @@
|
||||
from django.urls import path, re_path
|
||||
from django.conf import settings
|
||||
from django.conf.urls.static import static
|
||||
|
||||
from .viewset import GameViewSet
|
||||
|
||||
urlpatterns = [
|
||||
path("<int:pk>", GameViewSet.as_view({"get": "retrieve"}), name="game_page"),
|
||||
]
|
3
games/views.py
Normal file
3
games/views.py
Normal file
@ -0,0 +1,3 @@
|
||||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
@ -1,27 +0,0 @@
|
||||
from rest_framework import viewsets
|
||||
from rest_framework.response import Response
|
||||
from rest_framework import permissions, status
|
||||
from rest_framework.authentication import SessionAuthentication
|
||||
|
||||
from django.http import HttpRequest
|
||||
from django.db.models import QuerySet
|
||||
|
||||
from .models import GameModel
|
||||
from .serializers import GameSerializer
|
||||
|
||||
# Create your views here.
|
||||
class GameViewSet(viewsets.ModelViewSet):
|
||||
|
||||
queryset = GameModel.objects
|
||||
serializer_class = GameSerializer
|
||||
permission_classes = (permissions.IsAuthenticated,)
|
||||
authentication_classes = (SessionAuthentication,)
|
||||
|
||||
def retrieve(self, request: HttpRequest, pk):
|
||||
|
||||
if (not self.queryset.filter(pk = pk).exists()):
|
||||
return Response({"detail": "Game not found."}, status=status.HTTP_404_NOT_FOUND)
|
||||
|
||||
game = self.queryset.get(pk=pk)
|
||||
|
||||
return Response(self.serializer_class(game).data, status=status.HTTP_200_OK)
|
@ -12,7 +12,7 @@ class BlockView(APIView):
|
||||
|
||||
def get(self, request, pk):
|
||||
block = BlockModel.objects.filter(pk=pk)
|
||||
if (block.exists()):
|
||||
if (block):
|
||||
return Response(serializers.serialize("json", block), status=status.HTTP_200_OK)
|
||||
else:
|
||||
return Response("Not Found", status=status.HTTP_404_NOT_FOUND)
|
||||
|
@ -23,6 +23,5 @@ urlpatterns = [
|
||||
path('api/accounts/', include('accounts.urls')),
|
||||
path('api/chat/', include('chat.urls')),
|
||||
path('api/tournaments/', include('tournament.urls')),
|
||||
path('api/games/', include('games.urls')),
|
||||
path('', include('frontend.urls')),
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user