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 'lib/api/admin/ci/variables.rb')
-rw-r--r--lib/api/admin/ci/variables.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/api/admin/ci/variables.rb b/lib/api/admin/ci/variables.rb
index 3277acc1b52..a443f7f3476 100644
--- a/lib/api/admin/ci/variables.rb
+++ b/lib/api/admin/ci/variables.rb
@@ -54,6 +54,10 @@ module API
type: String,
desc: 'The key of the variable. Max 255 characters'
+ optional :description,
+ type: String,
+ desc: 'The description of the variable'
+
requires :value,
type: String,
desc: 'The value of a variable'
@@ -98,6 +102,10 @@ module API
type: String,
desc: 'The key of a variable'
+ optional :description,
+ type: String,
+ desc: 'The description of the variable'
+
optional :value,
type: String,
desc: 'The value of a variable'