Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
9 Zeilen
175 B
Ruby
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
|