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/ci/instance_variable.rb')
-rw-r--r--app/models/ci/instance_variable.rb10
1 files changed, 6 insertions, 4 deletions
diff --git a/app/models/ci/instance_variable.rb b/app/models/ci/instance_variable.rb
index 628749b32cb..e083caa8751 100644
--- a/app/models/ci/instance_variable.rb
+++ b/app/models/ci/instance_variable.rb
@@ -14,12 +14,14 @@ module Ci
alias_attribute :secret_value, :value
validates :key, uniqueness: {
- message: "(%{value}) has already been taken"
+ message: -> (object, data) { _("(%{value}) has already been taken") }
}
- validates :encrypted_value, length: {
- maximum: 1024,
- too_long: 'The encrypted value of the provided variable exceeds %{count} bytes. Variables over 700 characters risk exceeding the limit.'
+ validates :value, length: {
+ maximum: 10_000,
+ too_long: -> (object, data) do
+ _('The value of the provided variable exceeds the %{count} character limit')
+ end
}
scope :unprotected, -> { where(protected: false) }