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

protection.rb « container_registry « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 33c94c0c89382c0c41d166149531782f721335e5 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module ContainerRegistry
  module Protection
    def self.table_name_prefix
      'container_registry_protection_'
    end
  end
end