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

class RepositoryCheckMailer < ApplicationMailer
  # rubocop: disable CodeReuse/ActiveRecord
  layout 'empty_mailer'

  helper EmailsHelper

  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.active.pluck(:email),
      subject: "GitLab Admin | #{@message}"
    )
  end
  # rubocop: enable CodeReuse/ActiveRecord
end