0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-11-10 12:22:54 +01:00
discourse-custom-wizard/jobs/scheduled/custom_wizard/update_notices.rb
angusmcleod 084c6f4a7a wip
2021-09-24 17:58:42 +08:00

9 Zeilen
Kein EOL
174 B
Ruby

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