Skip to content
Snippets Groups Projects

fix: login unverified

Merged Bayu Samudra requested to merge fix/login-unverified into staging
Compare and
2 files
+ 18
15
Preferences
Compare changes
Files
2
@@ -7,8 +7,9 @@ import (
type UserClaim struct {
jwt.RegisteredClaims
Name string `json:"name"`
Email string `json:"email"`
Role user.UserRole `json:"role"`
Type TokenType `json:"type"`
Name string `json:"name"`
Email string `json:"email"`
Role user.UserRole `json:"role"`
Type TokenType `json:"type"`
IsVerified bool `json:"is_verified"`
}