gitlab-org--gitlab-foss/app/mailers/repository_check_mailer.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
556 B
Ruby
Raw Normal View History

2018-08-15 21:45:57 +00:00
# frozen_string_literal: true
class RepositoryCheckMailer < ApplicationMailer
# rubocop: disable CodeReuse/ActiveRecord
layout 'empty_mailer'
helper EmailsHelper
2016-04-04 15:23:43 +00:00
def notify(failed_count)
2017-02-22 15:10:32 +00:00
@message =
if failed_count == 1
"One project failed its last repository check"
else
"#{failed_count} projects failed their last repository check"
end
2016-04-04 15:23:43 +00:00
mail_with_locale(
to: User.admins.active.pluck(:email),
2016-04-18 08:58:40 +00:00
subject: "GitLab Admin | #{@message}"
2016-04-04 15:23:43 +00:00
)
end
# rubocop: enable CodeReuse/ActiveRecord
2016-04-04 15:23:43 +00:00
end