Skip to content

Commit

Permalink
Mandatory custom method (#859)
Browse files Browse the repository at this point in the history
  • Loading branch information
illfixit authored Oct 1, 2024
1 parent dbeb64f commit 25445c9
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ export class ContractAgreementTransferDialogForm {
const httpAuthByValue = value.httpAuthHeaderType === 'Value';
const httpAuthByVault = value.httpAuthHeaderType === 'Vault-Secret';

const httpProxiedMethod = !!value.showAllHttpParameterizationFields;

return {
dataAddressType: true,

Expand All @@ -101,7 +103,7 @@ export class ContractAgreementTransferDialogForm {
showAllHttpParameterizationFields: !customTransferProcessRequest,

httpProxiedPath: !customTransferProcessRequest,
httpProxiedMethod: !customTransferProcessRequest,
httpProxiedMethod: !customTransferProcessRequest && httpProxiedMethod,
httpProxiedQueryParams: !customTransferProcessRequest,
httpProxiedBody: !customTransferProcessRequest,
httpProxiedBodyContentType: !customTransferProcessRequest,
Expand Down

0 comments on commit 25445c9

Please sign in to comment.