Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mail_scheduler_queue.rb « concerns « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c051151e973b135f955935e9a9ab3907ae73ea32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module MailSchedulerQueue
  extend ActiveSupport::Concern

  included do
    queue_namespace :mail_scheduler
  end

  def notification_service
    @notification_service ||= NotificationService.new
  end
end