fix(amr): add pwd because password is wrong (#4284)

* fix(amr): add pwd because password is wrong

* docs: deprecation notice

* docs: nicer wording

* Update docs/docs/apis/openidoauth/claims.md

Co-authored-by: Livio Spring <livio.a@gmail.com>

Co-authored-by: Livio Spring <livio.a@gmail.com>
This commit is contained in:
Silvan
2022-08-31 10:16:31 +02:00
committed by GitHub
parent 77b4fc5487
commit b9795b5c57
2 changed files with 4 additions and 2 deletions

View File

@@ -18,7 +18,9 @@ import (
)
const (
// DEPRECATED: use `amrPWD` instead
amrPassword = "password"
amrPWD = "pwd"
amrMFA = "mfa"
amrOTP = "otp"
amrUserPresence = "user"
@@ -40,7 +42,7 @@ func (a *AuthRequest) GetACR() string {
func (a *AuthRequest) GetAMR() []string {
amr := make([]string, 0)
if a.PasswordVerified {
amr = append(amr, amrPassword)
amr = append(amr, amrPassword, amrPWD)
}
if len(a.MFAsVerified) > 0 {
amr = append(amr, amrMFA)