(userGUID, orgGUID string)
| 357 | } |
| 358 | |
| 359 | func (repo CloudControllerUserRepository) assocUserWithOrgByUserGUID(userGUID, orgGUID string) (apiErr error) { |
| 360 | path := fmt.Sprintf("/v2/organizations/%s/users/%s", orgGUID, userGUID) |
| 361 | return repo.ccGateway.UpdateResource(repo.config.APIEndpoint(), path, nil) |
| 362 | } |
| 363 | |
| 364 | func (repo CloudControllerUserRepository) getAuthEndpoint() (string, error) { |
| 365 | uaaEndpoint := repo.config.UaaEndpoint() |
no test coverage detected