remove ability for notifying nonprofits about the events they created

This commit is contained in:
Eric Schultz 2018-08-15 11:56:14 -05:00
parent 893bfd38b3
commit f986614613

View file

@ -90,7 +90,6 @@ class Event < ActiveRecord::Base
user = self.profile.user
Role.create(name: :event_editor, user_id: user.id, host: self)
EventMailer.delay.creation_followup(self)
NonprofitAdminMailer.delay.supporter_fundraiser(self) unless QueryRoles.is_nonprofit_user?(user.id, self.nonprofit_id)
self
end