Add setting to disable email notifications of comments

This commit is contained in:
Andrew Kvalheim 2022-03-31 17:31:08 -07:00
parent 9d4af0dcd3
commit 18433a6776
5 changed files with 18 additions and 1 deletions

View file

@ -0,0 +1,5 @@
class AddSendOnEventCommentToEmailSettings < ActiveRecord::Migration[7.0]
def change
add_column :email_settings, :send_on_event_comment, :boolean, default: true
end
end