Setup and check request before action executes #13
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.
Fixes #12
Problem
Due to a change on how
JSONAPI::Resourcesdeals with the setup and check of requests around its operations, the methodsJSONAPI::Utils#(setup_request|json_api_(render|serialize))had to change as well, since the request validation and error rendering that once were handled byJRnow needed to be handled byJU.Unfortunately the implementation caused a bug when dealing with invalid requests:
Fix
Now it sets up and checks the request before the action executes. This makes much more sense than validating the request after the actual operation is complete.