meal_homework/mealapi/schemas/mealschema.py
Torma Kristóf 88bbeded0f
All checks were successful
continuous-integration/drone/push Build is passing
i am retarted
2022-02-13 21:43:59 +01:00

15 lines
317 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
ingredients = ma.Nested(IngredientSchema, many=True)
class Meta:
model = Meal
load_instance = True