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

dependency_proxy.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0ed17921aaa9f7d31cd128cd4513e1a834fa3394 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true
module DependencyProxy
  URL_SUFFIX = '/dependency_proxy/containers'
  DISTRIBUTION_API_VERSION = 'registry/2.0'

  def self.table_name_prefix
    'dependency_proxy_'
  end
end