feat(xo-server-audit): ignore more methods

This commit is contained in:
Julien Fontanet 2022-07-09 10:41:28 +02:00
parent 16ca2f8da9
commit 20a89ca45a
2 changed files with 5 additions and 0 deletions

View File

@ -16,6 +16,7 @@
- [Tasks] Fix tasks not displayed when running CR backup job [Forum#6038](https://xcp-ng.org/forum/topic/6038/not-seeing-tasks-any-more-as-admin) (PR [#6315](https://github.com/vatesfr/xen-orchestra/pull/6315))
- [Backup] Fix failing merge multiple VHDs at once (PR [#6317](https://github.com/vatesfr/xen-orchestra/pull/6317))
- [VM/Console] Fix _Connect with SSH/RDP_ when address is IPv6
- [Audit] Ignore side-effects free API methods `xoa.check`, `xoa.clearCheckCache` and `xoa.getHVSupportedVersions`
### Packages to release
@ -36,6 +37,7 @@
- @vates/async-each major
- @xen-orchestra/backups minor
- vhd-lib patch
- xo-server-audit minor
- xo-web minor
<!--packages-end-->

View File

@ -56,7 +56,10 @@ const DEFAULT_BLOCKED_LIST = {
'vm.getHaValues': true,
'vm.stats': true,
'xo.getAllObjects': true,
'xoa.check': true,
'xoa.clearCheckCache': true,
'xoa.getApplianceInfo': true,
'xoa.getHVSupportedVersions': true,
'xoa.licenses.get': true,
'xoa.licenses.getAll': true,
'xoa.licenses.getSelf': true,