Fix setting REPO_WRITE permission on a repo ssh key

This commit is contained in:
Hugues Malphettes 2019-09-30 18:10:39 +08:00 committed by George Fleury
parent 1a4b3950cb
commit c32dc03fcb

View File

@ -8380,15 +8380,15 @@ func (a *DefaultApiService) CreateRepoSSHKey(projectKey, repositorySlug, sshPubK
localVarQueryParams := url.Values{} localVarQueryParams := url.Values{}
localVarFormParams := url.Values{} localVarFormParams := url.Values{}
permissions := "REPO_READ" permission := "REPO_READ"
if isWrite { if isWrite {
permissions = "REPO_WRITE" permission = "REPO_WRITE"
} }
localVarPostBody = map[string]interface{}{ localVarPostBody = map[string]interface{}{
"key": map[string]interface{}{ "key": map[string]interface{}{
"text": sshPubKey, "text": sshPubKey,
}, },
"permissions": permissions, "permission": permission,
} }
// to determine the Content-Type header // to determine the Content-Type header