From 2f4105013b93d9e802cfeadd485e81e95a8116e6 Mon Sep 17 00:00:00 2001 From: Dominik Csapak Date: Fri, 10 Mar 2023 14:08:12 +0100 Subject: [PATCH] api: return missing 'hardware' entry in node endpoint index The 'hardware' entry was missing there. While interfacing with it works, it will not show up during CLI auto completion and in the HTML debug view (/api2/html/) if not listed here in the API directory index. Signed-off-by: Dominik Csapak Signed-off-by: Thomas Lamprecht --- PVE/API2/Nodes.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/PVE/API2/Nodes.pm b/PVE/API2/Nodes.pm index 47c2d741..f1b3bca4 100644 --- a/PVE/API2/Nodes.pm +++ b/PVE/API2/Nodes.pm @@ -268,6 +268,7 @@ __PACKAGE__->register_method ({ { name => 'disks' }, { name => 'dns' }, { name => 'firewall' }, + { name => 'hardware' }, { name => 'hosts' }, { name => 'journal' }, { name => 'lxc' }, -- 2.39.5