2016-04-04 11:23:43 -04:00
|
|
|
class AdminEmailWorker
|
2017-11-28 11:08:30 -05:00
|
|
|
include ApplicationWorker
|
2016-10-21 12:13:41 -04:00
|
|
|
include CronjobQueue
|
2016-04-04 11:23:43 -04:00
|
|
|
|
|
|
|
def perform
|
2016-04-06 07:47:05 -04:00
|
|
|
repository_check_failed_count = Project.where(last_repository_check_failed: true).count
|
|
|
|
return if repository_check_failed_count.zero?
|
2016-04-04 11:23:43 -04:00
|
|
|
|
2016-04-06 07:47:05 -04:00
|
|
|
RepositoryCheckMailer.notify(repository_check_failed_count).deliver_now
|
2016-04-04 11:23:43 -04:00
|
|
|
end
|
|
|
|
end
|