Files
backend-v1/core/apps/tasks/views/board.py
husanjon 84b14da3f4
All checks were successful
Deploy to Production / build-and-deploy (push) Successful in 2m10s
ci cd uchun test commit
2026-05-04 09:49:08 +05:00

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]