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.
1 parent 82eb30e commit 88fe832Copy full SHA for 88fe832
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