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