Skip to content

Commit

Permalink
Fix 500 error with attendee search
Browse files Browse the repository at this point in the history
Removse a search property that was messing up our search SQL.
  • Loading branch information
kitsuta committed Nov 29, 2024
1 parent a2b7c14 commit 3aa5e69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion magprime/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def invalid_notification(self):
def searchable_fields(cls):
# List of fields for the attendee search to check search terms against
return ['first_name', 'last_name', 'legal_name', 'badge_printed_name', 'group_name',
'email', 'comments', 'admin_notes', 'for_review', 'promo_code_group_name']
'email', 'comments', 'admin_notes', 'for_review']

@classproperty
def searchable_bools(cls):
Expand Down

0 comments on commit 3aa5e69

Please sign in to comment.