Updating study model schema to include Progress Status
This commit is contained in:
parent
f748fa3db8
commit
8b27423172
|
@ -266,6 +266,7 @@ class StudySchema(ma.Schema):
|
||||||
warnings = fields.List(fields.Nested(ApiErrorSchema), dump_only=True)
|
warnings = fields.List(fields.Nested(ApiErrorSchema), dump_only=True)
|
||||||
protocol_builder_status = EnumField(StudyStatus, by_value=True)
|
protocol_builder_status = EnumField(StudyStatus, by_value=True)
|
||||||
status = EnumField(StudyStatus, by_value=True)
|
status = EnumField(StudyStatus, by_value=True)
|
||||||
|
progress_status = EnumField(ProgressStatus, by_value=True)
|
||||||
short_title = fields.String(allow_none=True)
|
short_title = fields.String(allow_none=True)
|
||||||
sponsor = fields.String(allow_none=True)
|
sponsor = fields.String(allow_none=True)
|
||||||
ind_number = fields.String(allow_none=True)
|
ind_number = fields.String(allow_none=True)
|
||||||
|
|
Loading…
Reference in New Issue