Skip to content

Commit

Permalink
Clean up volunteer shirt logic
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsuta committed Jun 14, 2024
1 parent 2f8ad6d commit 59f8afe
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions magprime/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def calculate_shipping_fee_cost(self):
@property
def volunteer_event_shirt_eligible(self):
return bool(c.VOLUNTEER_RIBBON in self.ribbon_ints and c.HOURS_FOR_SHIRT and not self.walk_on_volunteer)

@property
def staff_merch_items(self):
"""Used by the merch and staff_merch properties for staff swag."""
Expand Down Expand Up @@ -162,11 +162,6 @@ def staff_merch_items(self):
merch.append('Staff Merch Item')

return merch

@property
def gets_staff_shirt(self):
return bool(self.badge_type == c.STAFF_BADGE)

@property
def is_not_ready_to_checkin(self):
"""
Expand Down

0 comments on commit 59f8afe

Please sign in to comment.