From cced9311c5362403d4f800e7464e8e6f755644bc Mon Sep 17 00:00:00 2001 From: Piotr Biernat Date: Wed, 22 Oct 2025 18:58:25 +0200 Subject: [PATCH] Fixed typo --- identity/entity/url_access.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/identity/entity/url_access.go b/identity/entity/url_access.go index 9ee98da..50afdc1 100644 --- a/identity/entity/url_access.go +++ b/identity/entity/url_access.go @@ -4,5 +4,5 @@ type URLAccess struct { ID string `db:"id" json:"id"` Roles []string `db:"roles" json:"roles"` URL string `db:"url" json:"url"` - Service string `db:"service" json:"serice"` + Service string `db:"service" json:"service"` }