i am retarted
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Torma Kristóf 2022-02-13 21:43:59 +01:00
parent ac459031c7
commit 88bbeded0f

View File

@ -7,7 +7,7 @@ from .ingredientschema import IngredientSchema
class MealSchema(ma.SQLAlchemyAutoSchema): class MealSchema(ma.SQLAlchemyAutoSchema):
# A list of author objects # A list of author objects
authors = ma.Nested(IngredientSchema, many=True) ingredients = ma.Nested(IngredientSchema, many=True)
class Meta: class Meta:
model = Meal model = Meal