User API: add missing uid to user look up api (#112017)

This commit is contained in:
Jeff Levin 2025-10-04 04:24:13 -05:00 committed by GitHub
parent 56b136a8de
commit dc528cef0d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -117,6 +117,7 @@ func (hs *HTTPServer) GetUserByLoginOrEmail(c *contextmodel.ReqContext) response
} }
result := user.UserProfileDTO{ result := user.UserProfileDTO{
ID: usr.ID, ID: usr.ID,
UID: usr.UID,
Name: usr.Name, Name: usr.Name,
Email: usr.Email, Email: usr.Email,
Login: usr.Login, Login: usr.Login,