1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-08-10 22:21:36 +02:00

add names into issue return

This commit is contained in:
Chhekur
2021-08-28 00:19:33 +05:30
parent f1fe71fa2d
commit b7d7b959b1

View File

@@ -1059,7 +1059,7 @@ func (s *IssueService) AddLink(issueLink *IssueLink) (*Response, error) {
// SearchWithContext will search for tickets according to the jql
//
// Jira API docs: https://developer.atlassian.com/jiradev/jira-apis/jira-rest-apis/jira-rest-api-tutorials/jira-rest-api-example-query-issues
func (s *IssueService) SearchWithContext(ctx context.Context, jql string, options *SearchOptions) ([]Issue, *Response, error) {
func (s *IssueService) SearchWithContext(ctx context.Context, jql string, options *SearchOptions) ([]Issue, map[string]string, *Response, error) {
u := url.URL{
Path: "rest/api/2/search",
}
@@ -1098,7 +1098,7 @@ func (s *IssueService) SearchWithContext(ctx context.Context, jql string, option
if err != nil {
err = NewJiraError(resp, err)
}
return v.Issues, resp, err
return v.Issues, v.Names, resp, err
}
// Search wraps SearchWithContext using the background context.