~cytrogen/masto-fe

ae003d54f956fa2cbb422b04519b3a3e602652c3 — Eugen Rochko 6 years ago ed544f3
Fix option to send e-mail notification about account action always being true (#11242)

1 files changed, 6 insertions(+), 3 deletions(-)

M app/models/admin/account_action.rb
M app/models/admin/account_action.rb => app/models/admin/account_action.rb +6 -3
@@ 17,10 17,13 @@ class Admin::AccountAction
                :type,
                :text,
                :report_id,
                :warning_preset_id,
                :send_email_notification
                :warning_preset_id

  attr_reader :warning
  attr_reader :warning, :send_email_notification

  def send_email_notification=(value)
    @send_email_notification = ActiveModel::Type::Boolean.new.cast(value)
  end

  def save!
    ApplicationRecord.transaction do