1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-04-25 12:14:56 +02:00

add names into issue return

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

View File

@ -1059,7 +1059,7 @@ func (s *IssueService) AddLink(issueLink *IssueLink) (*Response, error) {
// SearchWithContext will search for tickets according to the jql // 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 // 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{ u := url.URL{
Path: "rest/api/2/search", Path: "rest/api/2/search",
} }
@ -1098,11 +1098,11 @@ func (s *IssueService) SearchWithContext(ctx context.Context, jql string, option
if err != nil { if err != nil {
err = NewJiraError(resp, err) err = NewJiraError(resp, err)
} }
return v.Issues, resp, err return v.Issues, v.Names, resp, err
} }
// Search wraps SearchWithContext using the background context. // Search wraps SearchWithContext using the background context.
func (s *IssueService) Search(jql string, options *SearchOptions) ([]Issue, *Response, error) { func (s *IssueService) Search(jql string, options *SearchOptions) ([]Issue, map[string]string *Response, error) {
return s.SearchWithContext(context.Background(), jql, options) return s.SearchWithContext(context.Background(), jql, options)
} }