Skip to content

Commit

Permalink
Send post-event surveys by default
Browse files Browse the repository at this point in the history
  • Loading branch information
tnurse18 committed Aug 26, 2021
1 parent b1f6900 commit dca9d11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion events/models.py
Expand Up @@ -810,7 +810,7 @@ class Event2019(BaseEvent):

# Post-event survey
send_survey = models.BooleanField(
default=False, help_text='Check if the event contact should be emailed the post-event survey after the event'
default=True, help_text='Check if the event contact should be emailed the post-event survey after the event'
)
survey_sent = models.BooleanField(default=False, help_text='The post-event survey has been sent to the client')

Expand Down
1 change: 1 addition & 0 deletions projection/forms.py
Expand Up @@ -183,6 +183,7 @@ def save_objects(self, user, contact, org, ip=None):
'location': Location.objects.get_or_create(name="Perreault Hall Upper", defaults={'building': building})[0],
'billed_in_bulk': True,
'billing_org': org,
'send_survey': False
}
# if it's possible to approve the event, do so (since there is no bulk approve)
if user.has_perm('events.approve_event'):
Expand Down

0 comments on commit dca9d11

Please sign in to comment.