Autofix Rubocop Style/RedundantBegin (#23703)
This commit is contained in:
@@ -166,13 +166,11 @@ class Admin::AccountAction
|
||||
end
|
||||
|
||||
def reports
|
||||
@reports ||= begin
|
||||
if type == 'none'
|
||||
with_report? ? [report] : []
|
||||
else
|
||||
Report.where(target_account: target_account).unresolved
|
||||
end
|
||||
end
|
||||
@reports ||= if type == 'none'
|
||||
with_report? ? [report] : []
|
||||
else
|
||||
Report.where(target_account: target_account).unresolved
|
||||
end
|
||||
end
|
||||
|
||||
def warning_preset
|
||||
|
Reference in New Issue
Block a user