ui: add user attributes page

todo
This commit is contained in:
Austin Alvarado
2024-01-18 05:41:06 +00:00
parent 6f905b1ca9
commit 55225bc15b
10 changed files with 621 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
mutation CreateUserAttribute($name: String!, $attributeType: AttributeType!, $isList: Boolean!, $isVisible: Boolean!, $isEditable: Boolean!) {
addUserAttribute(name: $name, attributeType: $attributeType, isList: $isList, isVisible: $isVisible, isEditable: $isEditable) {
ok
}
}