1
Fork 0

webauthn: Fix route path

This commit is contained in:
Steffo 2025-02-18 17:35:00 +01:00
parent a2a7d23163
commit dea1f96772
Signed by: steffo
GPG key ID: 6B8E18743E7E1F86

View file

@ -14,7 +14,7 @@ async fn main() {
"/.healthcheck" => get(routes::healthcheck::handler),
"/register/start" => get(routes::registration_start::handler),
"/register/finish" => get(routes::registration_finish::handler),
"/authenticate/finish" => get(routes::authentication_start::handler),
"/authenticate/start" => get(routes::authentication_start::handler),
"/authenticate/finish" => get(routes::authentication_finish::handler)
},
layers: {