2039c8280d
This whitelists all existing offenses for the various CodeReuse cops, of which most are triggered by the CodeReuse/ActiveRecord cop.
19 lines
482 B
Ruby
19 lines
482 B
Ruby
# 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
|