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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-07-30 14:26:54 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-07-30 14:26:54 +0400
commitecabefba1906526bf4038fa8c642688f93dbeb3e (patch)
treead7d843120ab5b140a1d0f9866f36d2538cc2fba /app/models/label.rb
parent4c6859a2dee6da420f33c3b7f9946f3642eb85f7 (diff)
More strict validation for label title
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/models/label.rb')
-rw-r--r--app/models/label.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/app/models/label.rb b/app/models/label.rb
index 31f68c31e5c..ea1daa6a204 100644
--- a/app/models/label.rb
+++ b/app/models/label.rb
@@ -2,9 +2,11 @@ class Label < ActiveRecord::Base
belongs_to :project
has_many :label_links, dependent: :destroy
- validates :color, format: { with: /\A\#[0-9A-Fa-f]{3}{1,2}+\Z/ }, allow_blank: true
+ validates :color, format: { with: /\A\#[0-9A-Fa-f]{6}+\Z/ }, allow_blank: true
validates :project, presence: true
- validates :title, presence: true
+
+ # Dont allow '?', '&', and ',' for label titles
+ validates :title, presence: true, format: { with: /\A[^&\?,&]*\z/ }
def name
title