From eaf11335754886106ac2a2095d97038915454d6e Mon Sep 17 00:00:00 2001 From: Hein Date: Tue, 2 Dec 2025 16:55:12 +0200 Subject: [PATCH] Fixed security rules not loading --- pkg/security/hooks.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/security/hooks.go b/pkg/security/hooks.go index 20ad259..a30e062 100644 --- a/pkg/security/hooks.go +++ b/pkg/security/hooks.go @@ -28,7 +28,7 @@ func loadSecurityRules(secCtx SecurityContext, securityList *SecurityList) error userID, ok := secCtx.GetUserID() if !ok { logger.Warn("No user ID in context for security check") - return fmt.Errorf("authentication required") + return nil } schema := secCtx.GetSchema()