From f9aa59ca041ac42ea1ac3207c82906e3a4ca5567 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Tue, 29 Apr 2025 19:21:17 +0200 Subject: [PATCH 1/2] fix #418: allow non admin user to access their settings --- lib/Controller/PersonalSettingController.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Controller/PersonalSettingController.php b/lib/Controller/PersonalSettingController.php index 9b63576..285f89c 100644 --- a/lib/Controller/PersonalSettingController.php +++ b/lib/Controller/PersonalSettingController.php @@ -98,6 +98,7 @@ class PersonalSettingController extends Controller } #[NoCSRFRequired] + #[NoAdminRequired] #[FrontpageRoute(verb: 'GET', url: '/user/config')] public function configuration(): JSONResponse { From fd4628d209afb5045e11bf83091818bd172cdac9 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Tue, 29 Apr 2025 19:22:25 +0200 Subject: [PATCH 2/2] update changelog --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bac4b5a..a02c601 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ## [Unreleased] +### Fixed +* fix #418: allow non admin user to access their settings + ## 5.0.1 ### Fixed * fix(StandardMenu): appLimit must return a value > 0