Skip to content

Commit

Permalink
Manage me endpoint key rename (#1410)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuhongsun96 authored May 1, 2024
1 parent 7b94159 commit 577c870
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/danswer/server/manage/users.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def verify_user_logged_in(user: User | None = Depends(optional_user)) -> UserInf

return UserInfo(
id=str(user.id),
email=get_display_email(user.email),
email=get_display_email(user.email, space_less=True),
is_active=user.is_active,
is_superuser=user.is_superuser,
is_verified=user.is_verified,
Expand Down

0 comments on commit 577c870

Please sign in to comment.