preliminary fixes to broken auth flow

This commit is contained in:
tsmethurst 2021-07-07 23:46:19 +02:00
commit e3ca835ff6
3 changed files with 20 additions and 25 deletions

View file

@ -107,7 +107,7 @@ func (m *Module) ValidatePassword(email string, password string) (userid string,
// If we've made it this far the email/password is correct, so we can just return the id of the user.
userid = gtsUser.ID
l.Tracef("returning (%s, %s)", userid, err)
l.Debugf("returning (%s, %s)", userid, err)
return
}