mirror of
https://github.com/TurTaskProject/TurTaskWeb.git
synced 2025-12-20 06:24:07 +01:00
Board and list retrieve need authentication
This commit is contained in:
parent
280517ec4f
commit
3801a6446c
@ -1,11 +1,13 @@
|
|||||||
from rest_framework import viewsets
|
from rest_framework import viewsets
|
||||||
from rest_framework.response import Response
|
from rest_framework.response import Response
|
||||||
from rest_framework import status
|
from rest_framework import status
|
||||||
|
from rest_framework.permissions import IsAuthenticated
|
||||||
|
|
||||||
from boards.models import Board, ListBoard
|
from boards.models import Board, ListBoard
|
||||||
from boards.serializers import BoardSerializer, ListBoardSerializer
|
from boards.serializers import BoardSerializer, ListBoardSerializer
|
||||||
|
|
||||||
class BoardViewSet(viewsets.ModelViewSet):
|
class BoardViewSet(viewsets.ModelViewSet):
|
||||||
|
permission_classes = (IsAuthenticated,)
|
||||||
queryset = Board.objects.all()
|
queryset = Board.objects.all()
|
||||||
serializer_class = BoardSerializer
|
serializer_class = BoardSerializer
|
||||||
http_method_names = ['get']
|
http_method_names = ['get']
|
||||||
@ -16,6 +18,7 @@ class BoardViewSet(viewsets.ModelViewSet):
|
|||||||
|
|
||||||
|
|
||||||
class ListBoardViewSet(viewsets.ModelViewSet):
|
class ListBoardViewSet(viewsets.ModelViewSet):
|
||||||
|
permission_classes = (IsAuthenticated,)
|
||||||
serializer_class = ListBoardSerializer
|
serializer_class = ListBoardSerializer
|
||||||
|
|
||||||
def get_queryset(self):
|
def get_queryset(self):
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user