Add email notifications for events registrations, add switch-checkboxes, create EventsRegistrations controller, separate page for events that require registration

This commit is contained in:
Stella Rouzi 2016-06-06 12:31:57 +03:00
parent 139a8565e2
commit 77af75f319
38 changed files with 1313 additions and 403 deletions

View file

@ -36,6 +36,7 @@ class Event < ActiveRecord::Base
validates :max_attendees, numericality: { only_integer: true, greater_than_or_equal_to: 1, allow_nil: true }
validate :max_attendees_no_more_than_room_size
validate :max_attendees_no_less_than_existing_registrations
scope :confirmed, -> { where(state: 'confirmed') }
scope :highlighted, -> { where(is_highlight: true) }
@ -68,6 +69,11 @@ class Event < ActiveRecord::Base
end
end
def send_email_on_updated_max_attendees_automatically?
program.conference.email_settings.send_on_updated_max_attendees_automatically &&
program.conference.email_settings.updated_max_attendees_automatically_subject && program.conference.email_settings.updated_max_attendees_automatically_body
end
##
# Checkes if the event has a start_time and a room
# ====Returns
@ -232,6 +238,13 @@ class Event < ActiveRecord::Base
errors.add(:max_attendees, "cannot be more than the room's capacity (#{room.size})") if max_attendees && (max_attendees > room.size)
end
##
# The value of max_attendees for an event cannot less than the number of existing registrations to that event
def max_attendees_no_less_than_existing_registrations
return unless max_attendees && max_attendees_changed?
errors.add(:max_attendees, 'cannot be less than existing registrations. You first need to unregister people, if you want to reduce this value.') if max_attendees < self.registrations.count
end
def abstract_limit
# If we don't have an event type, there is no need to count anything
return unless event_type && abstract