We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3018fab commit 23adbedCopy full SHA for 23adbed
1 file changed
README.md
@@ -1282,6 +1282,12 @@ JSONAPI.configure do |config|
1282
config.allow_sort = true
1283
config.allow_filter = true
1284
1285
+ # How to handle unsupported attributes and relationships which are provided in the request
1286
+ # true => raises an error
1287
+ # false => allows the request to continue. A warning is included in the response meta data indicating
1288
+ # the fields which were ignored. This is useful for client libraries which send extra parameters.
1289
+ config.raise_if_parameters_not_allowed = true
1290
+
1291
# :none, :offset, :paged, or a custom paginator name
1292
config.default_paginator = :none
1293
0 commit comments