2018-04-05 12:36:29 +02:00
|
|
|
class Administrateurs::ActivateBeforeExpirationJob < ApplicationJob
|
|
|
|
queue_as :cron
|
|
|
|
|
|
|
|
def perform(*args)
|
2019-08-09 16:04:28 +02:00
|
|
|
Administrateur
|
|
|
|
.includes(:user)
|
|
|
|
.inactive
|
|
|
|
.where(created_at: 3.days.ago.all_day)
|
|
|
|
.each { |a| a.user.remind_invitation! }
|
2018-04-05 12:36:29 +02:00
|
|
|
end
|
|
|
|
end
|