You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: NpgsqlRestClient/Builder.cs
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -766,14 +766,14 @@ public void BuildPasskeyAuthentication()
766
766
ChallengeRegistrationCommand=_config.GetConfigStr("ChallengeRegistrationCommand",passkeyCfg)??"select * from passkey_challenge_registration($1)",
767
767
ChallengeAuthenticationCommand=_config.GetConfigStr("ChallengeAuthenticationCommand",passkeyCfg)??"select * from passkey_challenge_authentication($1,$2)",
768
768
// GROUP 2: Challenge Verify Command
769
-
ChallengeVerifyCommand=_config.GetConfigStr("ChallengeVerifyCommand",passkeyCfg)??"select * from passkey_verify_challenge($1,$2)",
769
+
VerifyChallengeCommand=_config.GetConfigStr("VerifyChallengeCommand",passkeyCfg)??"select * from passkey_verify_challenge($1,$2)",
AuthenticateDataCommand=_config.GetConfigStr("AuthenticateDataCommand",passkeyCfg)??"select * from passkey_authenticate_data($1)",
773
773
// GROUP 4: Complete Commands
774
-
AddExistingUserCompleteCommand=_config.GetConfigStr("AddExistingUserCompleteCommand",passkeyCfg)??"select * from passkey_add_existing_complete($1,$2,$3,$4,$5,$6,$7,$8)",
775
-
RegistrationCompleteCommand=_config.GetConfigStr("RegistrationCompleteCommand",passkeyCfg)??"select * from passkey_registration_complete($1,$2,$3,$4,$5,$6,$7,$8)",
776
-
AuthenticateCompleteCommand=_config.GetConfigStr("AuthenticateCompleteCommand",passkeyCfg)??"select * from passkey_authenticate_complete($1,$2,$3,$4)",
774
+
CompleteAddExistingUserCommand=_config.GetConfigStr("CompleteAddExistingUserCommand",passkeyCfg)??"select * from passkey_complete_add_existing($1,$2,$3,$4,$5,$6,$7,$8)",
775
+
CompleteRegistrationCommand=_config.GetConfigStr("CompleteRegistrationCommand",passkeyCfg)??"select * from passkey_complete_registration($1,$2,$3,$4,$5,$6,$7,$8)",
776
+
CompleteAuthenticateCommand=_config.GetConfigStr("CompleteAuthenticateCommand",passkeyCfg)??"select * from passkey_complete_authenticate($1,$2,$3,$4)",
0 commit comments