diff --git a/webui/src/components/CurrentIdentity/CurrentIdentity.graphql b/webui/src/components/CurrentIdentity/CurrentIdentity.graphql index 9af786b7..5a1786f7 100644 --- a/webui/src/components/CurrentIdentity/CurrentIdentity.graphql +++ b/webui/src/components/CurrentIdentity/CurrentIdentity.graphql @@ -1,10 +1,14 @@ query CurrentIdentity { repository { userIdentity { + id humanId - email displayName + email + name avatarUrl + isProtected + login } } } diff --git a/webui/src/components/CurrentIdentity/CurrentIdentity.tsx b/webui/src/components/CurrentIdentity/CurrentIdentity.tsx index 68e65a99..2921e2bf 100644 --- a/webui/src/components/CurrentIdentity/CurrentIdentity.tsx +++ b/webui/src/components/CurrentIdentity/CurrentIdentity.tsx @@ -71,9 +71,15 @@ const CurrentIdentity = () => { - Display Name: {user.displayName} - Human Id: {user.humanId} - Email: {user.email} + Name: {user.name ? user.name : 'none'} + + Id: {user.humanId ? user.humanId : 'none'} + + Email: {user.email ? user.email : 'none'} + Login: {user.login ? user.login : 'none'} + + Protected: {user.isProtected ? user.login : 'not set'} +