mirror of
https://github.com/gfleury/go-bitbucket-v1.git
synced 2025-04-04 17:00:12 -05:00
Merge pull request #19 from gfleury/fixing_getpage
Changing GetPage to GetPullRequestsPage and adding the right parameters to it
This commit is contained in:
commit
0cb9d31661
@ -5096,7 +5096,7 @@ func (a *DefaultApiService) GetMergeConfig(scmId string) (*APIResponse, error) {
|
|||||||
@param "withAttributes" (bool) (optional) defaults to true, whether to return additional pull request attributes
|
@param "withAttributes" (bool) (optional) defaults to true, whether to return additional pull request attributes
|
||||||
@param "withProperties" (bool) (optional) defaults to true, whether to return additional pull request properties
|
@param "withProperties" (bool) (optional) defaults to true, whether to return additional pull request properties
|
||||||
@return */
|
@return */
|
||||||
func (a *DefaultApiService) GetPage(localVarOptionals map[string]interface{}) (*APIResponse, error) {
|
func (a *DefaultApiService) GetPullRequestsPage(projectKey, repositorySlug string, localVarOptionals map[string]interface{}) (*APIResponse, error) {
|
||||||
var (
|
var (
|
||||||
localVarHTTPMethod = strings.ToUpper("Get")
|
localVarHTTPMethod = strings.ToUpper("Get")
|
||||||
localVarPostBody interface{}
|
localVarPostBody interface{}
|
||||||
@ -5106,6 +5106,8 @@ func (a *DefaultApiService) GetPage(localVarOptionals map[string]interface{}) (*
|
|||||||
|
|
||||||
// create path and map variables
|
// create path and map variables
|
||||||
localVarPath := a.client.cfg.BasePath + "/api/1.0/projects/{projectKey}/repos/{repositorySlug}/pull-requests"
|
localVarPath := a.client.cfg.BasePath + "/api/1.0/projects/{projectKey}/repos/{repositorySlug}/pull-requests"
|
||||||
|
localVarPath = strings.Replace(localVarPath, "{"+"projectKey"+"}", fmt.Sprintf("%v", projectKey), -1)
|
||||||
|
localVarPath = strings.Replace(localVarPath, "{"+"repositorySlug"+"}", fmt.Sprintf("%v", repositorySlug), -1)
|
||||||
|
|
||||||
localVarHeaderParams := make(map[string]string)
|
localVarHeaderParams := make(map[string]string)
|
||||||
localVarQueryParams := url.Values{}
|
localVarQueryParams := url.Values{}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user