mirror of
https://gitlab.com/megazordpobeda/DataRush.git
synced 2026-05-22 23:17:09 +00:00
16 lines
314 B
Python
16 lines
314 B
Python
from ninja import ModelSchema, Schema
|
|
|
|
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", )
|