From 92bdad3a320257e98939d54b788ec68582fce8d4 Mon Sep 17 00:00:00 2001 From: Tomas Kubovic Date: Tue, 8 Jul 2025 08:28:45 +0200 Subject: [PATCH] Bugfix AccessControl json id changed to aceid to match resource --- schema/acl/acl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schema/acl/acl.go b/schema/acl/acl.go index 9f2abb96..96216af6 100644 --- a/schema/acl/acl.go +++ b/schema/acl/acl.go @@ -47,7 +47,7 @@ type UpdateRequest struct { // AccessControl defines permissions for one or more resources. type AccessControl struct { - ID int `json:"id,omitempty"` + ID int `json:"aceid,omitempty"` Permission Permission `json:"permission"` Resources []Resource `json:"resources"` Subject Subject `json:"subject"`