2016-04-06 07:47:05 -04:00
|
|
|
class RepositoryCheckMailer < BaseMailer
|
2016-04-04 11:23:43 -04:00
|
|
|
def notify(failed_count)
|
2017-02-22 10:10:32 -05:00
|
|
|
@message =
|
|
|
|
if failed_count == 1
|
|
|
|
"One project failed its last repository check"
|
|
|
|
else
|
|
|
|
"#{failed_count} projects failed their last repository check"
|
|
|
|
end
|
2016-04-04 11:23:43 -04:00
|
|
|
|
|
|
|
mail(
|
|
|
|
to: User.admins.pluck(:email),
|
2016-04-18 04:58:40 -04:00
|
|
|
subject: "GitLab Admin | #{@message}"
|
2016-04-04 11:23:43 -04:00
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|