Skip to content

Commit

Permalink
fix filter names (#797)
Browse files Browse the repository at this point in the history
Co-authored-by: Tom Glaz <tgmessages@gmail.com>
  • Loading branch information
mikefeldberg and tglaz authored Dec 23, 2024
1 parent 367ec79 commit dc608f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apps/betterangels-backend/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1256,8 +1256,8 @@ input ShelterPropertyInput {
pets: [PetChoices!] = null
demographics: [DemographicChoices!] = null
specialSituationRestrictions: [SpecialSituationRestrictionChoices!] = null
shelterType: [ShelterChoices!] = null
roomStyle: [RoomStyleChoices!] = null
shelterTypes: [ShelterChoices!] = null
roomStyles: [RoomStyleChoices!] = null
parking: [ParkingChoices!] = null
}

Expand Down
4 changes: 2 additions & 2 deletions apps/betterangels-backend/shelters/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ class ShelterPropertyInput:
pets: Optional[List[PetChoices]] = None
demographics: Optional[List[DemographicChoices]] = None
special_situation_restrictions: Optional[List[SpecialSituationRestrictionChoices]] = None
shelter_type: Optional[List[ShelterTypeChoices]] = None
room_style: Optional[List[RoomStyleChoices]] = None
shelter_types: Optional[List[ShelterTypeChoices]] = None
room_styles: Optional[List[RoomStyleChoices]] = None
parking: Optional[List[ParkingChoices]] = None


Expand Down

0 comments on commit dc608f0

Please sign in to comment.