summaryrefslogtreecommitdiff
path: root/app/mailers/repository_check_mailer.rb
blob: 145169be8a6149b462f48c1d06d7b6db0d051a39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

class RepositoryCheckMailer < BaseMailer
  # rubocop: disable CodeReuse/ActiveRecord
  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
  # rubocop: enable CodeReuse/ActiveRecord
end