mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-11 07:42:58 +03:00
11 lines
234 B
Go
11 lines
234 B
Go
package model
|
|
|
|
type UserGroup struct {
|
|
Base
|
|
FriendlyName string `sortable:"true"`
|
|
Name string `sortable:"true"`
|
|
LdapID *string
|
|
Users []User `gorm:"many2many:user_groups_users;"`
|
|
CustomClaims []CustomClaim
|
|
}
|