0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-11-10 04:12:53 +01:00
discourse-custom-wizard/jobs/scheduled/update_pro_status.rb

9 Zeilen
184 B
Ruby

# frozen_string_literal: true
class CustomWizard::UpdateProSubscription < ::Jobs::Scheduled
every 10.minutes
def execute(args)
2021-08-18 08:59:43 +02:00
CustomWizard::Pro.update_subscription
end
end