partial implement (Save)

This commit is contained in:
2026-04-16 07:01:57 +02:00
parent d571f156a6
commit d808b0289f
8 changed files with 363 additions and 105 deletions

View File

@@ -38,11 +38,17 @@ type Query {
# Fetch permissions for a path
acl(path: String!): [ACLEntry!]!
# Fetch all permissions for a specific user or group (admin only).
subjectAcl(subjectType: String!, subjectId: Int!): [ACLEntry!]!
# Returns all users and groups that can be assigned to ACL entries (admin only).
aclSubjects: ACLSubjects!
# Returns "local", "ldap", or "guest" for a given username.
userAuthType(username: String!): String!
# Returns the role of the currently authenticated user ("admin", "user", "guest").
currentUserRole: String!
}
type Mutation {