-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add pagination to bugsnag and generic api controller #72
Merged
Merged
Changes from 14 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
68168ba
refactor(pagination): add pagination to bugsnag and generic api contr…
landonreed bdfc6a7
docs(swagger): update API docs
landonreed f6c361b
refactor(pagination): refactor ResponseList to simplify construction
landonreed 767ee7e
docs(swagger): update swagger API docs
landonreed 00dc9cd
refactor(bugsnag): clean up code to construct event summaries
landonreed efab948
Merge branch 'dev' into add-pagination
landonreed 5c1bfcf
refactor(redirect): update HttpUtils refactored method name
landonreed 7795bd1
test: fix broken e2e test
landonreed 02ea4b8
refactor: add no-arg constructor for ResponseList
landonreed 7288d2b
refactor: fix test and remove unused imports
landonreed a2146c3
refactor(api-key): replace customerId with tag for userId
landonreed 755a900
refactor(pagination): change page param to offset
landonreed 99d364b
refactor(pagination): change remaining page -> offset instances
landonreed af9ad88
docs(pagination): update swagger for pagination
landonreed affc874
refactor(HttpUtils): refactor getQueryParamFromRequest (params, javad…
landonreed 530f20e
refactor(HttpUtils): fix max int value check
landonreed 7e59e7a
refactor(pagination): update swagger descriptions; add ResponseList#c…
landonreed 0c800e4
build(deps): use ibi-group fork of spark-swagger
landonreed 44c6c77
Revert "build(deps): use ibi-group fork of spark-swagger"
landonreed 7c1e133
docs(swagger): update API docs
landonreed d6e236d
Merge branch 'dev' into add-pagination
landonreed ace5772
test: fix trip history persistence compilation error
landonreed 692c66a
refactor(ApiGatewayUtils): use fluent method for inlining timeout call
landonreed File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think using static imports like this might actually be a bad practice. See this perspective here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is your recommendation? That we qualify the method call with the util class? I'm fine with that, but we should define an approach for our projects generally on this. Perhaps we should create an issue and handle that in a separate project-wide PR?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's discuss with the team together sometime and then if we decide we want to do this, then we can handle all the changes in another PR.