debian-mirror-gitlab/app/mailers/repository_check_mailer.rb
2022-10-11 01:57:18 +05:30

24 lines
556 B
Ruby

# frozen_string_literal: true
class RepositoryCheckMailer < ApplicationMailer
# 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_with_locale(
to: User.admins.active.pluck(:email),
subject: "GitLab Admin | #{@message}"
)
end
# rubocop: enable CodeReuse/ActiveRecord
end