Merge pull request #318 from gopesht/notify_on_venue_change
Email notification to all participants on venue update
This commit is contained in:
commit
b2ab893d17
8 changed files with 40 additions and 4 deletions
|
|
@ -0,0 +1,7 @@
|
|||
class AddVenueUpdateToEmailSettings < ActiveRecord::Migration
|
||||
def change
|
||||
add_column :email_settings, :send_on_venue_update, :boolean, default: true
|
||||
add_column :email_settings, :venue_update_subject, :string
|
||||
add_column :email_settings, :venue_update_template, :text
|
||||
end
|
||||
end
|
||||
|
|
@ -171,6 +171,9 @@ ActiveRecord::Schema.define(version: 20140714141156) do
|
|||
t.boolean "send_on_updated_conference_registration_dates", default: true
|
||||
t.string "updated_conference_registration_dates_subject"
|
||||
t.text "updated_conference_registration_dates_template"
|
||||
t.boolean "send_on_venue_update", default: true
|
||||
t.string "venue_update_subject"
|
||||
t.text "venue_update_template"
|
||||
end
|
||||
|
||||
create_table "event_attachments", force: true do |t|
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue