mirror of
https://github.com/TurTaskProject/TurTaskWeb.git
synced 2025-12-19 05:54:07 +01:00
8 lines
178 B
Python
8 lines
178 B
Python
from rest_framework import serializers
|
|
from ..models import Tag
|
|
|
|
|
|
class TagSerializer(serializers.ModelSerializer):
|
|
class Meta:
|
|
model = Tag
|
|
fields = '__all__' |