feat: admin groups - list + create, gql refactoring
This commit is contained in:
@@ -59,7 +59,7 @@ type AuthenticationProvider {
|
||||
}
|
||||
|
||||
type AuthenticationLoginResponse {
|
||||
operation: ResponseStatus
|
||||
responseResult: ResponseStatus
|
||||
tfaRequired: Boolean
|
||||
tfaLoginToken: String
|
||||
}
|
||||
|
@@ -39,12 +39,12 @@ input KeyValuePairInput {
|
||||
}
|
||||
|
||||
type DefaultResponse {
|
||||
operation: ResponseStatus
|
||||
responseResult: ResponseStatus
|
||||
}
|
||||
|
||||
type ResponseStatus {
|
||||
succeeded: Boolean!
|
||||
code: Int!
|
||||
errorCode: Int!
|
||||
slug: String!
|
||||
message: String
|
||||
}
|
||||
|
@@ -55,7 +55,7 @@ type GroupMutation {
|
||||
# -----------------------------------------------
|
||||
|
||||
type GroupResponse {
|
||||
operation: ResponseStatus!
|
||||
responseResult: ResponseStatus!
|
||||
group: Group
|
||||
}
|
||||
|
||||
@@ -64,6 +64,7 @@ type Group {
|
||||
name: String!
|
||||
rights: [String]
|
||||
users: [User]
|
||||
userCount: Int
|
||||
createdAt: Date!
|
||||
updatedAt: Date!
|
||||
}
|
||||
|
Reference in New Issue
Block a user