Welcome to mirror list, hosted at ThFree Co, Russian Federation.

security_scans_queue.rb « concerns « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f731317bb371e02036b0da2baff77e2eaf55f5a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

##
# Concern for setting Sidekiq settings for the various Secure product queues
#
module SecurityScansQueue
  extend ActiveSupport::Concern

  included do
    queue_namespace :security_scans
    feature_category :static_application_security_testing
  end
end