From ead6be934d37989105034d04e92c0229270389eb Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Mon, 21 Jun 2021 09:31:17 +0200 Subject: [PATCH] api: status: sort index and add missing "file-restore" Signed-off-by: Thomas Lamprecht --- PVE/API2/Storage/Status.pm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/PVE/API2/Storage/Status.pm b/PVE/API2/Storage/Status.pm index 897b4a7..8a36aef 100644 --- a/PVE/API2/Storage/Status.pm +++ b/PVE/API2/Storage/Status.pm @@ -221,12 +221,13 @@ __PACKAGE__->register_method ({ my ($param) = @_; my $res = [ - { subdir => 'status' }, { subdir => 'content' }, - { subdir => 'upload' }, + { subdir => 'file-restore' }, + { subdir => 'prunebackups' }, { subdir => 'rrd' }, { subdir => 'rrddata' }, - { subdir => 'prunebackups' }, + { subdir => 'status' }, + { subdir => 'upload' }, ]; return $res; -- 2.39.2