Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-09 20:02:54 +01:00
14 Zeilen
352 B
Ruby
14 Zeilen
352 B
Ruby
module Jobs
|
|
class ClearAfterTimeWizard < Jobs::Base
|
|
sidekiq_options queue: 'critical'
|
|
|
|
def execute(args)
|
|
User.human_users.each do |u|
|
|
if u.custom_fields['redirect_to_wizard'] === args[:wizard_id]
|
|
u.custom_fields.delete('redirect_to_wizard')
|
|
u.save_custom_fields(true)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|