fix: missing webauthn converter for login (#1113)

This commit is contained in:
Livio Amstutz 2020-12-17 09:34:42 +01:00 committed by GitHub
parent 584bcda108
commit c5287364a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -69,6 +69,9 @@ func HumanFromModel(user *model.Human) *Human {
if user.U2FLogins != nil {
human.U2FLogins = WebAuthNLoginsFromModel(user.U2FLogins)
}
if user.PasswordlessLogins != nil {
human.PasswordlessLogins = WebAuthNLoginsFromModel(user.PasswordlessLogins)
}
return human
}
@ -116,6 +119,9 @@ func HumanToModel(user *Human) *model.Human {
if user.U2FLogins != nil {
human.U2FLogins = WebAuthNLoginsToModel(user.U2FLogins)
}
if user.PasswordlessLogins != nil {
human.PasswordlessLogins = WebAuthNLoginsToModel(user.PasswordlessLogins)
}
return human
}