~cytrogen/masto-fe

f0e1b12c101e0dd0ddaaef8bdcc166624dba62d5 — Nick Schonning 3 years ago 5179c47
Autofix Rubocop Style/ExplicitBlockArgument (#23704)

2 files changed, 2 insertions(+), 10 deletions(-)

M .rubocop_todo.yml
M app/mailers/application_mailer.rb
M .rubocop_todo.yml => .rubocop_todo.yml +0 -6
@@ 2323,12 2323,6 @@ Style/ConcatArrayLiterals:
Style/Documentation:
  Enabled: false

# Offense count: 1
# This cop supports safe autocorrection (--autocorrect).
Style/ExplicitBlockArgument:
  Exclude:
    - 'app/mailers/application_mailer.rb'

# Offense count: 10
# This cop supports safe autocorrection (--autocorrect).
# Configuration parameters: AllowedVars.

M app/mailers/application_mailer.rb => app/mailers/application_mailer.rb +2 -4
@@ 9,9 9,7 @@ class ApplicationMailer < ActionMailer::Base

  protected

  def locale_for_account(account)
    I18n.with_locale(account.user_locale || I18n.default_locale) do
      yield
    end
  def locale_for_account(account, &block)
    I18n.with_locale(account.user_locale || I18n.default_locale, &block)
  end
end