Add New Method for Returning Board List With Offset/Paginated Results #535
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The current implementation of the
BoardService->getBoardList()
method will only return the first 50 results from the Jira Board endpoint (/rest/agile/1.0/board
).Rather than modify the existing
getBoardList()
method and introduce a breaking change, I created a new method --getBoards()
-- which maps the response data from/rest/agile/1.0/board
into a newly created BoardResult object. This new object has properties for data like total results, and aisLast
boolean, which are returned by the endpoint but currently ignored bygetBoardList()
.Using this new object data, developers can easily make multiple calls to the
/rest/agile/1.0/board
endpoint to retrieve the entire list of boards rather than just the first 50.I added this information to the ReadMe and added an additional test.
Let me know what you think.
Thanks.