From 8fddecbc98b114e46eb93ef3890f4f8066f74427 Mon Sep 17 00:00:00 2001 From: "Misha M.-Kupriyanov" Date: Wed, 1 Oct 2025 11:52:00 +0200 Subject: [PATCH] feat(admin-delegation-show): add priority to json output in order to be able to better understand priority sorting. php occ admin-delegation:show --output=json_pretty Signed-off-by: Misha M.-Kupriyanov --- apps/settings/lib/Command/AdminDelegation/Show.php | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/settings/lib/Command/AdminDelegation/Show.php b/apps/settings/lib/Command/AdminDelegation/Show.php index 352c2ab7fe9..5e59308521d 100644 --- a/apps/settings/lib/Command/AdminDelegation/Show.php +++ b/apps/settings/lib/Command/AdminDelegation/Show.php @@ -112,6 +112,7 @@ class Show extends Base { return [ 'name' => $setting->getName() ?: 'Global', 'className' => $className, + 'priority' => $setting->getPriority(), 'delegatedGroups' => $groups, ]; }, $settings);