0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2025-02-08 22:17:02 +01: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 10:19:00 +08:00
every 1.hour
2021-09-07 20:11:50 +08:00
def execute(args = {})
2021-08-18 14:59:43 +08:00
CustomWizard::Pro.update_subscription
end
2021-09-07 20:11:50 +08:00
end