1
0
Fork 0
discourse-custom-wizard-unl.../app/jobs/scheduled/custom_wizard/update_notices.rb
2022-03-12 14:49:41 +01:00

9 Zeilen
175 B
Ruby

# frozen_string_literal: true
class Jobs::CustomWizardUpdateNotices < ::Jobs::Scheduled
every 5.minutes
def execute(args = {})
CustomWizard::Notice.update
end
end