2017-11-01 05:21:14 +01:00
|
|
|
module Jobs
|
2019-10-03 07:17:21 +02:00
|
|
|
class SetAfterTimeWizard < ::Jobs::Base
|
2017-11-01 05:21:14 +01:00
|
|
|
def execute(args)
|
2020-04-14 07:46:06 +02:00
|
|
|
if SiteSetting.custom_wizard_enabled
|
2020-05-14 05:42:38 +02:00
|
|
|
wizard = CustomWizard::Wizard.create(args[:wizard_id])
|
2020-11-03 01:24:20 +01:00
|
|
|
|
2020-04-14 07:46:06 +02:00
|
|
|
if wizard && wizard.after_time
|
|
|
|
user_ids = []
|
2018-07-06 02:58:53 +02:00
|
|
|
|
2020-04-14 07:46:06 +02:00
|
|
|
User.human_users.each do |user|
|
|
|
|
if CustomWizard::Wizard.set_wizard_redirect(wizard.id, user)
|
|
|
|
user_ids.push(user.id)
|
|
|
|
end
|
2018-07-06 02:58:53 +02:00
|
|
|
end
|
|
|
|
|
2020-04-14 07:46:06 +02:00
|
|
|
MessageBus.publish "/redirect_to_wizard", wizard.id, user_ids: user_ids
|
|
|
|
end
|
2017-11-01 05:21:14 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|