2018-11-08 19:23:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
module MailSchedulerQueue
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
|
|
|
queue_namespace :mail_scheduler
|
|
|
|
end
|
|
|
|
|
|
|
|
def notification_service
|
|
|
|
@notification_service ||= NotificationService.new
|
|
|
|
end
|
|
|
|
end
|