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/helpers/integrations_helpers.rb')
-rw-r--r--lib/api/helpers/integrations_helpers.rb22
1 files changed, 20 insertions, 2 deletions
diff --git a/lib/api/helpers/integrations_helpers.rb b/lib/api/helpers/integrations_helpers.rb
index c85871d4b8c..f38fabc9586 100644
--- a/lib/api/helpers/integrations_helpers.rb
+++ b/lib/api/helpers/integrations_helpers.rb
@@ -456,15 +456,21 @@ module API
'google-play' => [
{
required: true,
+ name: :package_name,
+ type: String,
+ desc: 'The package name of the app in Google Play'
+ },
+ {
+ required: true,
name: :service_account_key,
type: String,
- desc: 'The Google Play Service Account Key'
+ desc: 'The Google Play service account key'
},
{
required: true,
name: :service_account_key_file_name,
type: String,
- desc: 'The Google Play Service Account Key File Name'
+ desc: 'The filename of the Google Play service account key'
}
],
'hangouts-chat' => [
@@ -611,6 +617,18 @@ module API
},
{
required: false,
+ name: :jira_issue_prefix,
+ type: String,
+ desc: 'Prefix to match Jira issue keys'
+ },
+ {
+ required: false,
+ name: :jira_issue_regex,
+ type: String,
+ desc: 'Regular expression to match Jira issue keys'
+ },
+ {
+ required: false,
name: :comment_on_event_enabled,
type: Boolean,
desc: 'Enable comments inside Jira issues on each GitLab event (commit / merge request)'