1
0
Fork 0
discourse-custom-wizard-unl.../jobs/scheduled/custom_wizard/update_notices.rb

9 Zeilen
174 B
Ruby

2021-09-24 11:58:42 +02:00
# frozen_string_literal: true
class Jobs::CustomWizardUpdateNotices < ::Jobs::Scheduled
every 5.minutes
def execute(args = {})
CustomWizard::Notice.update
end
end