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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
0 deletions
-
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' }, |
|
|
|
|