mirror of
https://github.com/nikdoof/pocket-id.git
synced 2025-12-13 23:02:17 +00:00
10 lines
226 B
Go
10 lines
226 B
Go
package model
|
|
|
|
type UserGroup struct {
|
|
Base
|
|
FriendlyName string `sortable:"true"`
|
|
Name string `gorm:"unique" sortable:"true"`
|
|
Users []User `gorm:"many2many:user_groups_users;"`
|
|
CustomClaims []CustomClaim
|
|
}
|