Fix Rails/FindEach cop (#26886)

This commit is contained in:
Matt Jankowski 2023-11-06 10:53:29 -05:00 committed by GitHub
parent fe26f33e0a
commit 0c4e7c06dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 9 additions and 9 deletions

View file

@ -22,7 +22,7 @@ class AppealService < BaseService
end
def notify_staff!
User.those_who_can(:manage_appeals).includes(:account).each do |u|
User.those_who_can(:manage_appeals).includes(:account).find_each do |u|
AdminMailer.with(recipient: u.account).new_appeal(@appeal).deliver_later if u.allows_appeal_emails?
end
end