2022-12-03 18:15:19 -07:00
|
|
|
package auth
|
|
|
|
|
2024-08-29 05:19:27 -06:00
|
|
|
import (
|
|
|
|
"github.com/fastenhealth/fasten-onprem/backend/pkg"
|
|
|
|
)
|
|
|
|
|
2022-12-03 18:15:19 -07:00
|
|
|
type UserMetadata struct {
|
2024-08-29 05:19:27 -06:00
|
|
|
FullName string `json:"full_name"`
|
|
|
|
Picture string `json:"picture"`
|
|
|
|
Email string `json:"email"`
|
|
|
|
Role pkg.UserRole `json:"role"`
|
2022-12-03 18:15:19 -07:00
|
|
|
}
|