Skip to content
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

PATCH request #6

Merged
merged 2 commits into from
Apr 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions metadata.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
homepage: "https://stape.io/"
documentation: "https://github.com/stape-io/json-http-request-tag"
versions:
- sha: 91fe8e69330444b4c72cf00604da7cc7d78db8e9
changeNotes: Added support of PATCH request.
- sha: 0b3a021ec9d32f010abf212ca7f85da62637c9e7
changeNotes: Fix log name
- sha: a3dc2725e8396fbe2b8e10a839828d8a7949c985
Expand Down
6 changes: 5 additions & 1 deletion template.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,10 @@ ___TEMPLATE_PARAMETERS___
{
"value": "PUT",
"displayValue": "PUT"
},
{
"value": "PATCH",
"displayValue": "PATCH"
}
],
"simpleValueType": true,
Expand All @@ -158,7 +162,7 @@ ___TEMPLATE_PARAMETERS___
{
"type": "REGEX",
"args": [
"POST|PUT"
"POST|PUT|PATCH"
]
}
]
Expand Down
Loading