gitlab-org--gitlab-foss/app/mailers/repository_check_mailer.rb
Stan Hu ede045820f Omit blocked admins from repository check e-mails
Blocked admins should not receive notifications about failed repository
checks.

Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/63019
2019-06-12 12:55:25 -07:00

23 lines
537 B
Ruby

# frozen_string_literal: true
class RepositoryCheckMailer < BaseMailer
# rubocop: disable CodeReuse/ActiveRecord
layout 'empty_mailer'
helper EmailsHelper
def notify(failed_count)
@message =
if failed_count == 1
"One project failed its last repository check"
else
"#{failed_count} projects failed their last repository check"
end
mail(
to: User.admins.active.pluck(:email),
subject: "GitLab Admin | #{@message}"
)
end
# rubocop: enable CodeReuse/ActiveRecord
end