Add in check for school district

This commit is contained in:
Rebecca Hsieh 2024-06-10 11:38:23 -07:00
parent 0f59c854ce
commit 98047797fa
No known key found for this signature in database

View file

@ -1065,6 +1065,8 @@ class DomainRequest(TimeStampedModel):
is_complete = self._is_city_complete()
case DomainRequest.OrganizationChoices.SPECIAL_DISTRICT:
is_complete = self._is_special_district_complete()
case DomainRequest.OrganizationChoices.SCHOOL_DISTRICT:
is_complete = True
case _:
# NOTE: Shouldn't happen, this is only if somehow they didn't choose an org type
is_complete = False