From: Aashish Sharma Date: Fri, 5 Jun 2026 07:07:38 +0000 (+0530) Subject: mgr/dashboard: Fix username validation for special characters by URL-encoding user... X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F69953%2Fhead;p=ceph.git mgr/dashboard: Fix username validation for special characters by URL-encoding user lookup requests When validating usernames, special characters such as '#' were not being URL-encoded before being appended to the user lookup endpoint. Because the browser treats '#' as a URL fragment, the request path was truncated, causing the backend to return an incorrect response and the UI to display a misleading "User already exists" validation error. Fixes: https://tracker.ceph.com/issues/77129 Signed-off-by: Aashish Sharma (cherry picked from commit b2ed52b2a4d86ad6fa19851053badfa9118c4b6f) --- diff --git a/src/pybind/mgr/dashboard/frontend/src/app/shared/api/user.service.ts b/src/pybind/mgr/dashboard/frontend/src/app/shared/api/user.service.ts index 95c80dd4665..d432e318471 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/shared/api/user.service.ts +++ b/src/pybind/mgr/dashboard/frontend/src/app/shared/api/user.service.ts @@ -21,7 +21,7 @@ export class UserService { } get(username: string) { - return this.http.get(`api/user/${username}`); + return this.http.get(`api/user/${encodeURIComponent(username)}`); } create(user: UserFormModel) {