Added service field to URLAccess Entity

This commit is contained in:
PB
2025-10-22 09:00:34 +02:00
parent 0da1747d35
commit acd224124e

View File

@@ -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"`
}