polycule-connect/polyculeconnect/internal/model/user.go
Melora Hugues 8d805cefe6
Some checks failed
/ docker-build-only (push) Failing after 27s
/ go-test (push) Failing after 1m18s
Cleanup DB a bit, and start correctly handling users (#42)
2024-10-18 22:06:05 +02:00

22 lines
308 B
Go

package model
import (
"time"
)
type User struct {
// Part of openid scope
Subject string
// Part of profile scope
Name string
FamilyName string
GivenName string
Nickname string
Picture string
UpdatedAt time.Time
// part of email scope
Email string
EmailVerified bool
}