summaryrefslogtreecommitdiff
path: root/app/workers/namespaces/in_product_marketing_emails_worker.rb
blob: f8fa393264acbccd716baa958147255531dd1e44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

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

    feature_category :subgroups
    urgency :low

    def perform
      return unless Gitlab::CurrentSettings.in_product_marketing_emails_enabled
      return unless Gitlab::Experimentation.active?(:in_product_marketing_emails)

      Namespaces::InProductMarketingEmailsService.send_for_all_tracks_and_intervals
    end
  end
end