Fixed wrong typed Entity, URLAccess is what we need

This commit is contained in:
2025-10-21 21:10:25 +02:00
parent 4972989610
commit 0da1747d35

View File

@@ -0,0 +1,7 @@
package identity
type URLAccess struct {
ID string `db:"id" json:"id"`
Roles []string `db:"roles" json:"roles"`
URL string `db:"url" json:"url"`
}