Updated account action notification email checkbox

false/off by default to not alert user via email
This commit is contained in:
mgabdev 2019-07-23 15:12:43 -04:00
parent f604b18f0f
commit db065b3c0b

View File

@ -5,7 +5,7 @@ module Admin
before_action :set_account
def new
@account_action = Admin::AccountAction.new(type: params[:type], report_id: params[:report_id], send_email_notification: true)
@account_action = Admin::AccountAction.new(type: params[:type], report_id: params[:report_id], send_email_notification: false)
@warning_presets = AccountWarningPreset.all
end