diff options
author | Michael Muré <batolettre@gmail.com> | 2022-08-23 14:48:49 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2022-08-23 14:48:49 +0200 |
commit | 6ed4b8b7a1185ad278eb2e40b32e859f828233d9 (patch) | |
tree | d22507f4ab418bfe5221ca409348b540b53139f8 /webui/src/components | |
parent | 45b04351d8d02e53b3401b0ee23f7cbe750b63cd (diff) | |
download | git-bug-6ed4b8b7a1185ad278eb2e40b32e859f828233d9.tar.gz |
webui: adapt to CombinedId
Diffstat (limited to 'webui/src/components')
-rw-r--r-- | webui/src/components/Identity/CurrentIdentity.graphql | 1 | ||||
-rw-r--r-- | webui/src/components/Identity/UserIdentity.graphql | 1 |
2 files changed, 2 insertions, 0 deletions
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 } |