Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
066eef4ef8
The "Transfer" UI has been upgraded into a full wizard manager, adding additional import/export features and bulk-delete functionality
14 Zeilen
353 B
Ruby
14 Zeilen
353 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
|