Browse Source

Merge pull request #903 from colinin/add-missing-http-method

fix(auditing): add missing http method.
pull/914/head
yx lin 2 years ago
committed by GitHub
parent
commit
4b42d90e30
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  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