mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-07-08 15:22:46 +00:00
11 lines
264 B
Ruby
11 lines
264 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module ::Jobs
|
||
|
class ManuallyUpdateCampaignData < ::Jobs::Base
|
||
|
def execute(args)
|
||
|
return unless SiteSetting.discourse_subscriptions_campaign_enabled
|
||
|
DiscourseSubscriptions::Campaign.new.refresh_data
|
||
|
end
|
||
|
end
|
||
|
end
|