mirror of
https://gitlab.com/megazordpobeda/DataRush.git
synced 2026-05-22 23:17:09 +00:00
24 lines
397 B
Python
24 lines
397 B
Python
from ninja import ModelSchema
|
|
|
|
from apps.team.models import Team
|
|
|
|
|
|
class CreateTeamSchema(ModelSchema):
|
|
class Meta:
|
|
model = Team
|
|
fields = (
|
|
"name",
|
|
"members",
|
|
)
|
|
|
|
|
|
class TeamSchemaOut(ModelSchema):
|
|
class Meta:
|
|
model = Team
|
|
fields = (
|
|
"id",
|
|
"name",
|
|
"owner",
|
|
"members",
|
|
)
|