We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
photoUrl
V1MemberUser
We need to show the available user's photoUrl in the Users table. Related to #5888
export interface V1MemberUser { userId?: string; userEmail?: string; userName?: string; roleName?: string; + photoUrl?: string; createdOn?: string; updatedOn?: string; }
As a workaround, we retrieve the current user's photo URL using createAdminServiceGetCurrentUser()
createAdminServiceGetCurrentUser()
export interface V1User { id?: string; email?: string; displayName?: string; photoUrl?: string; quotas?: V1UserQuotas; createdOn?: string; updatedOn?: string; }
This results in situations where users who are not logged in cannot access profiles with photo URLs stored in the database.
The text was updated successfully, but these errors were encountered:
Added in #5891
Sorry, something went wrong.
begelundmuller
Successfully merging a pull request may close this issue.
We need to show the available user's
photoUrl
in the Users table. Related to #5888export interface V1MemberUser { userId?: string; userEmail?: string; userName?: string; roleName?: string; + photoUrl?: string; createdOn?: string; updatedOn?: string; }
As a workaround, we retrieve the current user's photo URL using
createAdminServiceGetCurrentUser()
This results in situations where users who are not logged in cannot access profiles with photo URLs stored in the database.
The text was updated successfully, but these errors were encountered: