fix UserCommentSchema

This commit is contained in:
Aaron 2019-02-18 17:59:22 -06:00
parent 8ef9a7e5e4
commit 10d70ec4f6
No known key found for this signature in database
GPG Key ID: 3B5B7597106F0A0E
1 changed files with 2 additions and 2 deletions

View File

@ -84,6 +84,8 @@ class UserCommentSchema(ma.Schema):
"proposal",
"content",
"date_created",
"reported",
"hidden",
)
proposal = ma.Nested(
@ -94,8 +96,6 @@ class UserCommentSchema(ma.Schema):
"content",
"invites",
"updates",
"reported",
"hidden",
]
)