[GitlabCommits] fix parameters requirement status and default values
Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
This commit is contained in:
parent
be98ad161a
commit
09bc211cc6
1 changed files with 8 additions and 4 deletions
|
@ -17,19 +17,23 @@ class GitlabCommitsBridge extends BridgeAbstract{
|
|||
'[
|
||||
{
|
||||
"name" : "Base URI",
|
||||
"identifier" : "uri"
|
||||
"identifier" : "uri",
|
||||
"defaultValue":"https://gitlab.com"
|
||||
},
|
||||
{
|
||||
"name" : "User name",
|
||||
"identifier" : "u"
|
||||
"identifier" : "u",
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"name" : "Project name",
|
||||
"identifier" : "p"
|
||||
"identifier" : "p",
|
||||
"required":true
|
||||
},
|
||||
{
|
||||
"name" : "Project branch",
|
||||
"identifier" : "b"
|
||||
"identifier" : "b",
|
||||
"defaultValue":"master"
|
||||
}
|
||||
|
||||
]';
|
||||
|
|
Loading…
Reference in a new issue