fix: adjust api of get_diet_records
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-09-21 15:34:54 +08:00
parent 063bf5c18b
commit 18213b3958
2 changed files with 4 additions and 2 deletions

View File

@@ -34,4 +34,6 @@ class DietRecordOut(Schema):
class DietRecordsOut(Schema):
records = fields.List(fields.Nested(DietRecordOut))
records = fields.List(fields.Nested(DietRecordOut))
previous_date = fields.String()
next_date = fields.String()