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_status.rb
2021-08-10 14:45:23 +08:00

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