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

24 lines
544 B
Ruby
Raw Normal View History

2018-08-15 17:45:57 -04:00
# frozen_string_literal: true
class RepositoryCheckMailer < ApplicationMailer
# rubocop: disable CodeReuse/ActiveRecord
layout 'empty_mailer'
helper EmailsHelper
2016-04-04 11:23:43 -04:00
def notify(failed_count)
2017-02-22 10:10:32 -05: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 11:23:43 -04:00
mail(
to: User.admins.active.pluck(:email),
2016-04-18 04:58:40 -04:00
subject: "GitLab Admin | #{@message}"
2016-04-04 11:23:43 -04:00
)
end
# rubocop: enable CodeReuse/ActiveRecord
2016-04-04 11:23:43 -04:00
end