720ed6f6ab
Partially addresses #47424.
17 lines
359 B
Ruby
17 lines
359 B
Ruby
# frozen_string_literal: true
|
|
|
|
class NamespacePathValidator < AbstractPathValidator
|
|
extend Gitlab::EncodingHelper
|
|
|
|
def self.path_regex
|
|
Gitlab::PathRegex.full_namespace_path_regex
|
|
end
|
|
|
|
def self.format_regex
|
|
Gitlab::PathRegex.namespace_format_regex
|
|
end
|
|
|
|
def self.format_error_message
|
|
Gitlab::PathRegex.namespace_format_message
|
|
end
|
|
end
|