meal_homework/mealapi/schemas/mealschema.py
Torma Kristóf caa84189ea
All checks were successful
continuous-integration/drone/push Build is passing
use new api
2022-02-13 20:56:17 +01:00

15 lines
313 B
Python

#!/usr/bin/env python3
from .marshm import ma
from model import Meal
from .ingredientschema import IngredientSchema
class MealSchema(ma.SQLAlchemyAutoSchema):
# A list of author objects
authors = ma.Nested(IngredientSchema, many=True)
class Meta:
model = Meal
load_instance = True