Sith/core/schemas.py

16 lines
334 B
Python
Raw Normal View History

2024-07-18 18:23:30 +00:00
from ninja import ModelSchema, Schema
from core.models import User
class SimpleUserSchema(ModelSchema):
"""A schema with the minimum amount of information to represent a user."""
class Meta:
model = User
fields = ["id", "nick_name", "first_name", "last_name"]
class MarkdownSchema(Schema):
text: str