Browse Source

fix(auditing): add missing http method.

pull/903/head
colin 2 years ago
parent
commit
8cf4deae3e
  1. 1
      apps/vue/src/views/auditing/components/ModalData.ts

1
apps/vue/src/views/auditing/components/ModalData.ts

@ -5,6 +5,7 @@ const { L } = useLocalization(['AbpAuditLogging']);
const httpMethodOptions = [
{ value: 'GET', label: 'GET' },
{ value: 'PUT', label: 'PUT' },
{ value: 'POST', label: 'POST' },
{ value: 'PATCH', label: 'PATCH' },
{ value: 'DELETE', label: 'DELETE' },

Loading…
Cancel
Save