mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-06 10:19:48 +00:00
17 lines
403 B
Ruby
17 lines
403 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Regex
|
|
module ContainerRegistry
|
|
module Protection
|
|
module Rules
|
|
def self.protection_rules_container_repository_path_pattern_regex
|
|
@protection_rules_container_repository_path_pattern_regex ||=
|
|
Gitlab::Regex.container_repository_name_regex('*')
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|