feat(auth): #154 send verification mails
All checks were successful
Build Docker Image / Explore-Gitea-Actions (push) Successful in 52s
Build and Push Docker Image / Explore-Gitea-Actions (push) Successful in 54s

This commit was merged in pull request #155.
This commit is contained in:
Tim
2024-09-07 22:51:50 +02:00
parent 89bc723427
commit a2ac449a50
13 changed files with 353 additions and 100 deletions

11
types/types.go Normal file
View File

@@ -0,0 +1,11 @@
package types
import "github.com/google/uuid"
type User struct {
Id uuid.UUID
Email string
SessionId string
EmailVerified bool
SessionValid bool
}