From 6ed4b8b7a1185ad278eb2e40b32e859f828233d9 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Tue, 23 Aug 2022 14:48:49 +0200 Subject: webui: adapt to CombinedId --- webui/src/components/Identity/CurrentIdentity.graphql | 1 + webui/src/components/Identity/UserIdentity.graphql | 1 + 2 files changed, 2 insertions(+) (limited to 'webui/src/components/Identity') diff --git a/webui/src/components/Identity/CurrentIdentity.graphql b/webui/src/components/Identity/CurrentIdentity.graphql index 054190df..56efeacf 100644 --- a/webui/src/components/Identity/CurrentIdentity.graphql +++ b/webui/src/components/Identity/CurrentIdentity.graphql @@ -2,6 +2,7 @@ query CurrentIdentity { repository { + name userIdentity { ...Identity } diff --git a/webui/src/components/Identity/UserIdentity.graphql b/webui/src/components/Identity/UserIdentity.graphql index 9cf10248..01e8c3e5 100644 --- a/webui/src/components/Identity/UserIdentity.graphql +++ b/webui/src/components/Identity/UserIdentity.graphql @@ -2,6 +2,7 @@ query GetUserById($userId: String!) { repository { + name identity(prefix: $userId) { ...Identity } -- cgit