mirror of
https://github.com/lldap/lldap.git
synced 2026-07-25 17:58:44 +00:00
frontend: Add UUID and creation date
This exposes the new info in the GraphQL API, and adds it to the frontend.
This commit is contained in:
@@ -2,6 +2,8 @@ query GetGroupDetails($id: Int!) {
|
||||
group(groupId: $id) {
|
||||
id
|
||||
displayName
|
||||
creationDate
|
||||
uuid
|
||||
users {
|
||||
id
|
||||
displayName
|
||||
|
||||
@@ -2,5 +2,6 @@ query GetGroupList {
|
||||
groups {
|
||||
id
|
||||
displayName
|
||||
creationDate
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,6 +6,7 @@ query GetUserDetails($id: String!) {
|
||||
firstName
|
||||
lastName
|
||||
creationDate
|
||||
uuid
|
||||
groups {
|
||||
id
|
||||
displayName
|
||||
|
||||
Reference in New Issue
Block a user