Files
gitlabhq/app/workers/concerns/todos_destroyer_queue.rb
2024-11-05 15:24:02 +00:00

14 lines
266 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
feature_category :notifications
end
end