mirror of
https://github.com/lldap/lldap.git
synced 2026-03-31 15:07:48 +01: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:
@@ -17,6 +17,8 @@ type Mutation {
|
||||
type Group {
|
||||
id: Int!
|
||||
displayName: String!
|
||||
creationDate: DateTimeUtc!
|
||||
uuid: String!
|
||||
"The groups to which this user belongs."
|
||||
users: [User!]!
|
||||
}
|
||||
@@ -67,6 +69,7 @@ type User {
|
||||
firstName: String!
|
||||
lastName: String!
|
||||
creationDate: DateTimeUtc!
|
||||
uuid: String!
|
||||
"The groups to which this user belongs."
|
||||
groups: [Group!]!
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user