server: Add graphQL methods to manage custom LDAP object classes

This commit is contained in:
Valentin Tolmer
2024-02-06 22:28:24 +01:00
committed by nitnelave
parent 4955b7fac1
commit 96f5b31e0c
3 changed files with 109 additions and 2 deletions
+4
View File
@@ -18,6 +18,10 @@ type Mutation {
addGroupAttribute(name: String!, attributeType: AttributeType!, isList: Boolean!, isVisible: Boolean!, isEditable: Boolean!): Success!
deleteUserAttribute(name: String!): Success!
deleteGroupAttribute(name: String!): Success!
addUserObjectClass(name: String!): Success!
addGroupObjectClass(name: String!): Success!
deleteUserObjectClass(name: String!): Success!
deleteGroupObjectClass(name: String!): Success!
}
type Group {