summaryrefslogtreecommitdiff
path: root/app/workers/namespaces/in_product_marketing_emails_worker.rb
blob: 49e65d59e8349c5e949a75b800eb28b3bbfd6ba9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true

module Namespaces
  class InProductMarketingEmailsWorker # rubocop:disable Scalability/IdempotentWorker
    include ApplicationWorker

    data_consistency :always

    include CronjobQueue # rubocop:disable Scalability/CronWorkerContext

    feature_category :subgroups
    urgency :low

    def perform
      return if paid_self_managed_instance?
      return if setting_disabled?

      Namespaces::InProductMarketingEmailsService.send_for_all_tracks_and_intervals
    end

    private

    def paid_self_managed_instance?
      false
    end

    def setting_disabled?
      !Gitlab::CurrentSettings.in_product_marketing_emails_enabled
    end
  end
end

Namespaces::InProductMarketingEmailsWorker.prepend_mod_with('Namespaces::InProductMarketingEmailsWorker')