mirror of
https://github.com/gfleury/go-bitbucket-v1.git
synced 2025-04-04 17:00:12 -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{}
|
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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user