mirror of
https://github.com/FunnyWolf/agentic-soc-platform.git
synced 2026-08-22 13:12:56 +02:00
7 lines
175 B
Python
7 lines
175 B
Python
from rest_framework.serializers import Serializer, CharField, BooleanField
|
|
|
|
|
|
class UserAPISerializer(Serializer):
|
|
username = CharField()
|
|
is_superuser = BooleanField()
|