summaryrefslogtreecommitdiff
path: root/app/validators/project_path_validator.rb
blob: aea0a68e7cf9099517a9c6c39408a4dd142a00f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

class ProjectPathValidator < AbstractPathValidator
  extend Gitlab::EncodingHelper

  def self.path_regex
    Gitlab::PathRegex.full_project_path_regex
  end

  def self.format_regex
    Gitlab::PathRegex.project_path_format_regex
  end

  def self.format_error_message
    Gitlab::PathRegex.project_path_format_message
  end
end