Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-26 02:50:28 +01:00
9 Zeilen
174 B
Ruby
9 Zeilen
174 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class Jobs::CustomWizardUpdateNotices < ::Jobs::Scheduled
|
||
|
every 5.minutes
|
||
|
|
||
|
def execute(args = {})
|
||
|
CustomWizard::Notice.update
|
||
|
end
|
||
|
end
|