From ad2555c82f3768c969d34396692b6886eb18c1e5 Mon Sep 17 00:00:00 2001 From: BryantHe Date: Sat, 12 Aug 2023 20:36:23 +0800 Subject: [PATCH] feat: add api of body record 7 --- app/api/v1/schema/record.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/api/v1/schema/record.py b/app/api/v1/schema/record.py index 196bdb1..7260912 100644 --- a/app/api/v1/schema/record.py +++ b/app/api/v1/schema/record.py @@ -18,4 +18,4 @@ class BodyRecordOut(Schema): class BodyRecordsOut(Schema): - records = fields.Nested(BodyRecordOut) \ No newline at end of file + records = fields.List(fields.Nested(BodyRecordOut)) \ No newline at end of file