mirror of
https://github.com/TurTaskProject/TurTaskWeb.git
synced 2025-12-19 22:14:07 +01:00
8 lines
212 B
Python
8 lines
212 B
Python
from rest_framework import viewsets
|
|
from ..models import Tag
|
|
from .serializers import TagSerializer
|
|
|
|
|
|
class TagViewSet(viewsets.ModelViewSet):
|
|
queryset = Tag.objects.all()
|
|
serializer_class = TagSerializer |