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:
Diffstat (limited to 'app/models/operations/feature_flag.rb')
-rw-r--r--app/models/operations/feature_flag.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/models/operations/feature_flag.rb b/app/models/operations/feature_flag.rb
index 6876af09c2c..01db0a5cf8b 100644
--- a/app/models/operations/feature_flag.rb
+++ b/app/models/operations/feature_flag.rb
@@ -30,7 +30,9 @@ module Operations
length: 2..63,
format: {
with: Gitlab::Regex.feature_flag_regex,
- message: Gitlab::Regex.feature_flag_regex_message
+ message: ->(_object, _data) {
+ s_("Validation|can contain only lowercase letters, digits, '_' and '-'. Must start with a letter, and cannot end with '-' or '_'")
+ }
}
validates :name, uniqueness: { scope: :project_id }
validates :description, allow_blank: true, length: 0..255