this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add status to read spec

+2 -4
+2 -4
care/emr/resources/questionnaire_response/spec.py
··· 53 53 54 54 class QuestionnaireResponseReadSpec(EMRQuestionnaireResponseBase): 55 55 id: UUID4 56 + status: str 56 57 questionnaire: QuestionnaireReadSpec 57 58 subject_id: str 58 59 responses: list ··· 75 76 mapping["encounter"] = obj.encounter.external_id 76 77 else: 77 78 mapping["encounter"] = None 78 - if obj.created_by: 79 - mapping["created_by"] = UserSpec.serialize(obj.created_by) 80 - if obj.updated_by: 81 - mapping["updated_by"] = UserSpec.serialize(obj.updated_by) 79 + cls.serialize_audit_users(mapping, obj)