fix: user settings
All checks were successful
JS Unit Tests / test (pull_request) Successful in 15s
Build Test / build (pull_request) Successful in 19s
PHP Unit Tests / test (pull_request) Successful in 50s

Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
This commit is contained in:
2026-03-04 20:35:00 -05:00
parent 24e046792b
commit 3a2739fdd8
4 changed files with 43 additions and 16 deletions

View File

@@ -60,7 +60,7 @@ class InitController extends ControllerAbstract
'permissions' => $this->userIdentity->identity()->getPermissions(),
],
'profile' => $this->userService->getEditableFields($this->userIdentity->identifier()),
'settings' => $this->userService->fetchSettings(),
'settings' => $this->userService->fetchSettings([], true),
];
return new JsonResponse($configuration);