gitlab-org--gitlab-foss/app/workers/concerns/mail_scheduler_queue.rb

14 lines
238 B
Ruby

# 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