Welcome to mirror list, hosted at ThFree Co, Russian Federation.

repository_check_mailer.rb « mailers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 22a9f5da646fe3ec64c9929b1bae41f52c6121a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class RepositoryCheckMailer < BaseMailer
  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.pluck(:email),
      subject: "GitLab Admin | #{@message}"
    )
  end
end