Browse Source

fix(webhooks): fix auto api parameter format error

pull/556/head
cKey 4 years ago
parent
commit
150b33ea47
  1. 4
      apps/vue/src/api/webhooks/send-attempts.ts
  2. 4
      apps/vue/src/api/webhooks/subscriptions.ts

4
apps/vue/src/api/webhooks/send-attempts.ts

@ -32,7 +32,9 @@ export const getList = (input: WebhookSendAttemptGetListInput) => {
service: remoteServiceName,
controller: controllerName,
action: 'GetListAsync',
params: input,
params: {
input: input,
},
});
};

4
apps/vue/src/api/webhooks/subscriptions.ts

@ -59,7 +59,9 @@ export const getList = (input: WebhookSubscriptionGetListInput) => {
service: remoteServiceName,
controller: controllerName,
action: 'GetListAsync',
params: input,
params: {
input: input,
},
});
};

Loading…
Cancel
Save