All checks were successful
Deploy to Production / build-and-deploy (push) Successful in 2m10s
15 lines
402 B
Python
15 lines
402 B
Python
from rest_framework import generics, permissions
|
|
from rest_framework.response import Response
|
|
|
|
from core.apps.tasks.serializers.board import BoardSerializer
|
|
from core.apps.tasks.models import Column
|
|
|
|
|
|
#test commit
|
|
|
|
class BoardListView(generics.ListAPIView):
|
|
queryset = Column.objects.order_by('id')
|
|
serializer_class = BoardSerializer
|
|
permission_classes = [permissions.IsAuthenticated]
|
|
|
|
|