Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-12 21:22:54 +01:00
11 Zeilen
193 B
Ruby
11 Zeilen
193 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Jobs
|
||
|
class UpdateProSubscription < ::Jobs::Scheduled
|
||
|
every 1.days
|
||
|
|
||
|
def execute(args)
|
||
|
CustomWizard::ProSubscription.update
|
||
|
end
|
||
|
end
|
||
|
end
|