1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-07-17 01:12:24 +02:00

use pagination from design

This commit is contained in:
zenixhuang
2018-03-16 19:01:13 +09:00
parent 1d38c6cae2
commit 04cbb2fe5c
4 changed files with 60 additions and 48 deletions

View File

@ -559,6 +559,7 @@ func (s *IssueService) Get(issueID string, options *GetQueryOptions) (*Issue, *R
// The given options will be appended to the query string
//
// JIRA API docs: https://docs.atlassian.com/jira-software/REST/7.3.1/#agile/1.0/issue-getIssue
//
// TODO: create agile service for holding all agile apis' implementation
func (s *IssueService) GetWithAgile(issueID string, options *GetQueryOptions) (*Issue, *Response, error) {
apiEndpoint := fmt.Sprintf("rest/agile/1.0/issue/%s", issueID)