From acd224124ebb1276f67986300f5185d08f5b3672 Mon Sep 17 00:00:00 2001 From: Piotr Biernat Date: Wed, 22 Oct 2025 09:00:34 +0200 Subject: [PATCH] Added service field to URLAccess Entity --- identity/entity/url_access.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/identity/entity/url_access.go b/identity/entity/url_access.go index 9929461..9ee98da 100644 --- a/identity/entity/url_access.go +++ b/identity/entity/url_access.go @@ -1,7 +1,8 @@ package identity type URLAccess struct { - ID string `db:"id" json:"id"` - Roles []string `db:"roles" json:"roles"` - URL string `db:"url" json:"url"` + ID string `db:"id" json:"id"` + Roles []string `db:"roles" json:"roles"` + URL string `db:"url" json:"url"` + Service string `db:"service" json:"serice"` }