Browse Source

Merge pull request #14268 from volodymyr-babak/rest-api-patch

Added 'PATCH' request method for 'rest api call' node
pull/14398/head
Vladyslav Prykhodko 7 months ago
committed by GitHub
parent
commit
fedd2f4e86
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 3
      ui-ngx/src/app/modules/home/components/rule-node/rule-node-config.models.ts

3
ui-ngx/src/app/modules/home/components/rule-node/rule-node-config.models.ts

@ -269,7 +269,8 @@ export enum HttpRequestType {
GET = 'GET',
POST = 'POST',
PUT = 'PUT',
DELETE = 'DELETE'
DELETE = 'DELETE',
PATCH = 'PATCH'
}
export const ToByteStandartCharsetTypes = [

Loading…
Cancel
Save