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

project_path_validator.rb « validators « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 829b596ad3cbff707f4ba1b9e12eedfba32aa9a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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

  def self.full_path(record, value)
    record.build_full_path
  end
end