summaryrefslogtreecommitdiff
path: root/app/models/namespace.rb
diff options
context:
space:
mode:
authorCiro Santilli <ciro.santilli@gmail.com>2014-06-26 09:53:01 +0200
committerCiro Santilli <ciro.santilli@gmail.com>2014-06-26 13:31:34 +0200
commitb1c40e81510ccccc5e93a82d2f5b819d6dea69e5 (patch)
treef597169e68893bb35cf1b1a8a36d355a097c8293 /app/models/namespace.rb
parent3f8e6cf3d1360ce0843e4fd8f9c04040aba2baae (diff)
downloadgitlab-ce-b1c40e81510ccccc5e93a82d2f5b819d6dea69e5.tar.gz
Fix username validation message to match regexp.
Also used for project, group and web ui new file names.
Diffstat (limited to 'app/models/namespace.rb')
-rw-r--r--app/models/namespace.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/namespace.rb b/app/models/namespace.rb
index 446e5f04c63..fd973ddf226 100644
--- a/app/models/namespace.rb
+++ b/app/models/namespace.rb
@@ -25,12 +25,12 @@ class Namespace < ActiveRecord::Base
validates :name, presence: true, uniqueness: true,
length: { within: 0..255 },
format: { with: Gitlab::Regex.name_regex,
- message: "only letters, digits, spaces & '_' '-' '.' allowed." }
+ message: Gitlab::Regex.name_regex_message }
validates :description, length: { within: 0..255 }
validates :path, uniqueness: { case_sensitive: false }, presence: true, length: { within: 1..255 },
exclusion: { in: Gitlab::Blacklist.path },
format: { with: Gitlab::Regex.path_regex,
- message: "only letters, digits & '_' '-' '.' allowed. Letter should be first" }
+ message: Gitlab::Regex.path_regex_message }
delegate :name, to: :owner, allow_nil: true, prefix: true