Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-23 01:40:29 +01:00
11 Zeilen
Kein EOL
193 B
Ruby
11 Zeilen
Kein EOL
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 |