mirror of
https://github.com/gfleury/go-bitbucket-v1.git
synced 2025-04-04 08:50:13 -05:00
Fix setting REPO_WRITE permission on a repo ssh key
This commit is contained in:
parent
1a4b3950cb
commit
c32dc03fcb
@ -8380,15 +8380,15 @@ func (a *DefaultApiService) CreateRepoSSHKey(projectKey, repositorySlug, sshPubK
|
||||
localVarQueryParams := url.Values{}
|
||||
localVarFormParams := url.Values{}
|
||||
|
||||
permissions := "REPO_READ"
|
||||
permission := "REPO_READ"
|
||||
if isWrite {
|
||||
permissions = "REPO_WRITE"
|
||||
permission = "REPO_WRITE"
|
||||
}
|
||||
localVarPostBody = map[string]interface{}{
|
||||
"key": map[string]interface{}{
|
||||
"text": sshPubKey,
|
||||
},
|
||||
"permissions": permissions,
|
||||
"permission": permission,
|
||||
}
|
||||
|
||||
// to determine the Content-Type header
|
||||
|
Loading…
x
Reference in New Issue
Block a user