Add Project name validation
This commit is contained in:
parent
c4536ae587
commit
17ea019f4e
|
@ -64,7 +64,9 @@ class Project < ActiveRecord::Base
|
|||
# Validations
|
||||
validates :owner, presence: true
|
||||
validates :description, length: { within: 0..2000 }
|
||||
validates :name, presence: true, length: { within: 0..255 }
|
||||
validates :name, presence: true, length: { within: 0..255 },
|
||||
format: { with: Gitlab::Regex.project_name_regex,
|
||||
message: "only letters, digits & '_' '-' '.' allowed. Letter should be first" }
|
||||
validates :path, presence: true, length: { within: 0..255 },
|
||||
format: { with: Gitlab::Regex.path_regex,
|
||||
message: "only letters, digits & '_' '-' '.' allowed. Letter should be first" }
|
||||
|
|
|
@ -6,6 +6,10 @@ module Gitlab
|
|||
default_regex
|
||||
end
|
||||
|
||||
def project_name_regex
|
||||
default_regex
|
||||
end
|
||||
|
||||
def path_regex
|
||||
default_regex
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue