mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-13 14:44:59 +00:00
16 lines
280 B
Ruby
16 lines
280 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module GithubImport
|
|
module Queue
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
queue_namespace :github_importer
|
|
feature_category :importers
|
|
sidekiq_options dead: false
|
|
end
|
|
end
|
|
end
|
|
end
|