From 7003b7472cf46be8cc6f529c1c7bf1ed19dc5536 Mon Sep 17 00:00:00 2001 From: Prabhjot Singh Sethi Date: Wed, 8 Oct 2025 12:00:00 +0530 Subject: [PATCH] Include Resource Group definition as part of route struct --- route/route.go | 1 + 1 file changed, 1 insertion(+) diff --git a/route/route.go b/route/route.go index 0d35cab..6110a67 100644 --- a/route/route.go +++ b/route/route.go @@ -44,6 +44,7 @@ type Route struct { IsUserSpecific *bool `bson:"isUserSpecific,omitempty"` // RBAC constructs associated with Route + Group string `bson:"group,omitempty"` Resource string `bson:"resource,omitempty"` Verb string `bson:"verb,omitempty"`