1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-08-06 22:13:02 +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

@ -280,6 +280,10 @@ func (r *Response) populatePageValues(v interface{}) {
r.StartAt = value.StartAt
r.MaxResults = value.MaxResults
r.Total = value.Total
case *groupMembersResult:
r.StartAt = value.StartAt
r.MaxResults = value.MaxResults
r.Total = value.Total
}
return
}