We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 82eb30e + 88fe832 commit 27e5293Copy full SHA for 27e5293
lib/jsonapi_spec_helpers/helpers.rb
@@ -92,6 +92,10 @@ def jsonapi_put(url, payload)
92
put url, params: payload.to_json, headers: jsonapi_headers
93
end
94
95
+ def jsonapi_patch(url, payload)
96
+ patch url, params: payload.to_json, headers: jsonapi_headers
97
+ end
98
+
99
def jsonapi_delete(url)
100
delete url, headers: jsonapi_headers
101
0 commit comments