summaryrefslogtreecommitdiff
path: root/app/mailers/repository_check_mailer.rb
blob: 11a0c0b770050193b9b4f38bcdd77c18453773f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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