Skip to content

Commit b58ee74

Browse files
committed
Fix issue qor#11 and copy pull qor#14
1 parent bb19c3e commit b58ee74

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

providers/password/handlers.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ var DefaultAuthorizeHandler = func(context *auth.Context) (*claims.Claims, error
2424
authInfo.Provider = provider.GetName()
2525
authInfo.UID = strings.TrimSpace(req.Form.Get("login"))
2626

27-
if tx.Model(context.Auth.AuthIdentityModel).Where(authInfo).Scan(&authInfo).RecordNotFound() {
27+
authwhere := auth_identity.AuthIdentity{Basic: authInfo}
28+
if tx.Model(context.Auth.AuthIdentityModel).Where(authwhere).Scan(&authInfo).RecordNotFound() {
2829
return nil, auth.ErrInvalidAccount
2930
}
3031

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<p>Please click on the below link to validate your email address:</p>
2+
3+
<p><a href="{{confirm_url}}">{{confirm_url}}</a></p>

0 commit comments

Comments
 (0)