Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
10 Zeilen
183 B
Ruby
10 Zeilen
183 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class Jobs::CustomWizardUpdateSubscription < ::Jobs::Scheduled
|
||
|
every 1.hour
|
||
|
|
||
|
def execute(args = {})
|
||
|
CustomWizard::Subscription.update
|
||
|
end
|
||
|
end
|