0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-20 15:51:11 +02:00
discourse-custom-wizard/jobs/scheduled/update_pro_subscription.rb

10 Zeilen
186 B
Ruby

# frozen_string_literal: true
class CustomWizard::UpdateProSubscription < ::Jobs::Scheduled
2021-09-01 04:19:00 +02:00
every 1.hour
2021-09-07 14:11:50 +02:00
def execute(args = {})
2021-08-18 08:59:43 +02:00
CustomWizard::Pro.update_subscription
end
2021-09-07 14:11:50 +02:00
end