From a654f69862aefeac377e3ef910cb5cdf34a2876e Mon Sep 17 00:00:00 2001 From: Stanislav Afanasev Date: Fri, 2 Nov 2018 18:58:49 +0300 Subject: [PATCH] fix-create-comment-1 updated using pattern --- default_api.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/default_api.go b/default_api.go index 74c4b04..03deae4 100644 --- a/default_api.go +++ b/default_api.go @@ -760,7 +760,10 @@ func (a *DefaultApiService) CreateComment_1(projectKey, repositorySlug string, p ) // create path and map variables - localVarPath := a.client.cfg.BasePath + fmt.Sprintf("/api/1.0/projects/%s/repos/%s/pull-requests/%d/comments", projectKey, repositorySlug, pullRequestID) + localVarPath := a.client.cfg.BasePath + "/api/1.0/projects/{projectKey}/repos/{repositorySlug}/pull-requests/{pullRequestId}/comments" + localVarPath = strings.Replace(localVarPath, "{"+"projectKey"+"}", fmt.Sprintf("%v", projectKey), -1) + localVarPath = strings.Replace(localVarPath, "{"+"repositorySlug"+"}", fmt.Sprintf("%v", repositorySlug), -1) + localVarPath = strings.Replace(localVarPath, "{"+"pullRequestId"+"}", fmt.Sprintf("%v", pullRequestID), -1) localVarHeaderParams := make(map[string]string) localVarQueryParams := url.Values{}