Sith/core/schemas.py

16 lines
334 B
Python
Raw Permalink Normal View History

2024-07-18 20:23:30 +02: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