From db065b3c0b78a8d2454990c4261b9f15bcacf1f1 Mon Sep 17 00:00:00 2001 From: mgabdev <> Date: Tue, 23 Jul 2019 15:12:43 -0400 Subject: [PATCH] Updated account action notification email checkbox false/off by default to not alert user via email --- app/controllers/admin/account_actions_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/admin/account_actions_controller.rb b/app/controllers/admin/account_actions_controller.rb index a2cea461..415b3de2 100644 --- a/app/controllers/admin/account_actions_controller.rb +++ b/app/controllers/admin/account_actions_controller.rb @@ -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