remove legacy system/disks route

This commit is contained in:
Johannes Zellner
2024-05-15 14:34:12 +02:00
parent 5d41a84fec
commit 77163cc1b2
3 changed files with 0 additions and 21 deletions
-1
View File
@@ -118,7 +118,6 @@ async function initializeExpressSync() {
router.get ('/api/v1/system/info', token, authorizeAdmin, routes.system.getInfo);
router.post('/api/v1/system/reboot', json, token, authorizeAdmin, routes.system.reboot);
router.get ('/api/v1/system/graphs', token, authorizeAdmin, routes.system.getSystemGraphs);
router.get ('/api/v1/system/disks', token, authorizeAdmin, routes.system.getDisks);
router.get ('/api/v1/system/cpus', token, authorizeAdmin, routes.system.getCpus);
router.get ('/api/v1/system/disk_usage', token, authorizeAdmin, routes.system.getDiskUsage);
router.post('/api/v1/system/disk_usage', token, authorizeAdmin, routes.system.updateDiskUsage);