Skip to content

Commit

Permalink
Remove email verified (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
lm2343635 committed Feb 8, 2024
1 parent 6dd10b0 commit 2f8733e
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions manage/user.go
Original file line number Diff line number Diff line change
Expand Up @@ -829,14 +829,13 @@ func (m *Manager) AppleLoginMobile(login request.AppleMobileLogin) (*GrantResult
}

type appleIdTokenInfo struct {
Iss string `json:"iss"`
Aud string `json:"aud"`
Exp int64 `json:"exp"`
Iat int64 `json:"iat"`
Sub string `json:"sub"`
Email string `json:"email"`
EmailVerified string `json:"email_verified"`
AuthTime int64 `json:"auth_time"`
Iss string `json:"iss"`
Aud string `json:"aud"`
Exp int64 `json:"exp"`
Iat int64 `json:"iat"`
Sub string `json:"sub"`
Email string `json:"email"`
AuthTime int64 `json:"auth_time"`
gjwt.StandardClaims
}

Expand Down

0 comments on commit 2f8733e

Please sign in to comment.