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
9 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
1 deletions
-
ui-ngx/src/app/modules/home/components/rule-node/rule-node-config.models.ts
|
|
@ -269,7 +269,8 @@ export enum HttpRequestType { |
|
|
GET = 'GET', |
|
|
GET = 'GET', |
|
|
POST = 'POST', |
|
|
POST = 'POST', |
|
|
PUT = 'PUT', |
|
|
PUT = 'PUT', |
|
|
DELETE = 'DELETE' |
|
|
DELETE = 'DELETE', |
|
|
|
|
|
PATCH = 'PATCH' |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
export const ToByteStandartCharsetTypes = [ |
|
|
export const ToByteStandartCharsetTypes = [ |
|
|
|