Compare commits

..

1 Commits

Author SHA1 Message Date
ccc705e2fe Added Role Entity 2025-10-21 20:55:41 +02:00
2 changed files with 1 additions and 9 deletions

View File

@@ -2,6 +2,6 @@ package identity
type Role struct {
ID string `db:"id" json:"id"`
Roles []byte `db:"roles" json:"roles"`
Roles string `db:"roles" json:"roles"`
URL string `db:"url" json:"url"`
}

View File

@@ -1,8 +0,0 @@
package identity
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"`
}