8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf0705e commit e532ab3Copy full SHA for e532ab3
server/router.go
@@ -77,10 +77,10 @@ func Init(e *gin.Engine) {
77
api.GET("/auth/sso_get_token", handles.SSOLoginCallback)
78
79
// webauthn
80
+ api.GET("/authn/webauthn_begin_login", handles.BeginAuthnLogin)
81
+ api.POST("/authn/webauthn_finish_login", handles.FinishAuthnLogin)
82
webauthn.GET("/webauthn_begin_registration", handles.BeginAuthnRegistration)
83
webauthn.POST("/webauthn_finish_registration", handles.FinishAuthnRegistration)
- webauthn.GET("/webauthn_begin_login", handles.BeginAuthnLogin)
- webauthn.POST("/webauthn_finish_login", handles.FinishAuthnLogin)
84
webauthn.POST("/delete_authn", handles.DeleteAuthnLogin)
85
webauthn.GET("/getcredentials", handles.GetAuthnCredentials)
86
0 commit comments