0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-19 23:31:11 +02:00
discourse-custom-wizard/jobs/set_after_time_wizard.rb
Angus McLeod 11953055fd various
2017-11-01 17:50:03 +08:00

15 Zeilen
479 B
Ruby

module Jobs
class SetAfterTimeWizard < Jobs::Base
def execute(args)
if PluginStoreRow.exists?(plugin_name: 'custom_wizard', key: args[:wizard_id])
user_ids = []
User.human_users.each do |u|
u.custom_fields['redirect_to_wizard'] = args[:wizard_id]
u.save_custom_fields(true)
user_ids.push(u.id)
end
MessageBus.publish "/redirect_to_wizard", args[:wizard_id], user_ids: user_ids
end
end
end
end