13 lines
230 B
Ruby
13 lines
230 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
##
|
||
|
# Concern for setting Sidekiq settings for the various Todos Destroyers.
|
||
|
#
|
||
|
module TodosDestroyerQueue
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
included do
|
||
|
queue_namespace :todos_destroyer
|
||
|
end
|
||
|
end
|