Skip to content

Commit

Permalink
Merge pull request #1033 from coronasafe/sainak/fix/daily-rounds-pati…
Browse files Browse the repository at this point in the history
…ent-category

make patient_category non mandatory
  • Loading branch information
gigincg authored Sep 22, 2022
2 parents bd8946d + 547ab92 commit 1c9d8eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion care/facility/api/serializers/daily_round.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class DailyRoundSerializer(serializers.ModelSerializer):
deprecated_covid_category = ChoiceField(
choices=COVID_CATEGORY_CHOICES, required=False
) # Deprecated
patient_category = ChoiceField(choices=CATEGORY_CHOICES, required=True)
patient_category = ChoiceField(choices=CATEGORY_CHOICES, required=False)
current_health = ChoiceField(choices=CURRENT_HEALTH_CHOICES, required=False)

action = ChoiceField(
Expand Down

0 comments on commit 1c9d8eb

Please sign in to comment.