Torma Kristóf
d539472905
All checks were successful
continuous-integration/drone/push Build is passing
14 lines
286 B
Python
14 lines
286 B
Python
#!/usr/bin/env python3
|
|
from .marshm import ma
|
|
from model import Meal
|
|
from .ingredientschema import IngredientSchema
|
|
|
|
|
|
class MealSchema(ma.SQLAlchemyAutoSchema):
|
|
|
|
ingredients = ma.Nested(IngredientSchema, many=True)
|
|
|
|
class Meta:
|
|
model = Meal
|
|
load_instance = True
|