Skip to content
Snippets Groups Projects
Commit 1f3bdd45 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Allow spaces in project name

parent 3de42718
Branches
Tags
No related merge requests found
Loading
Loading
@@ -66,7 +66,7 @@ class Project < ActiveRecord::Base
validates :description, length: { within: 0..2000 }
validates :name, presence: true, length: { within: 0..255 },
format: { with: Gitlab::Regex.project_name_regex,
message: "only letters, digits & '_' '-' '.' allowed. Letter should be first" }
message: "only letters, digits, spaces & '_' '-' '.' 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" }
Loading
Loading
Loading
Loading
@@ -7,7 +7,7 @@ module Gitlab
end
 
def project_name_regex
default_regex
/\A[a-zA-Z][a-zA-Z0-9_\-\. ]*\z/
end
 
def path_regex
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment