2018-06-27 03:31:41 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-30 09:05:20 -04:00
|
|
|
module MailSchedulerQueue
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
|
|
|
queue_namespace :mail_scheduler
|
|
|
|
end
|
2018-04-20 13:37:38 -04:00
|
|
|
|
|
|
|
def notification_service
|
|
|
|
@notification_service ||= NotificationService.new
|
|
|
|
end
|
2018-03-30 09:05:20 -04:00
|
|
|
end
|