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 ce2a7d2 commit 2cbfca3Copy full SHA for 2cbfca3
api/router.go
@@ -143,6 +143,7 @@ func Route(
143
publicAPIRouter.Use(StoreMiddleware, JSONMiddleware)
144
145
publicAPIRouter.HandleFunc("/auth/login", login).Methods("GET", "POST")
146
+ publicAPIRouter.HandleFunc("/auth/verify/email", startEmailVerification).Methods("POST")
147
publicAPIRouter.HandleFunc("/auth/login/email", loginEmail).Methods("GET", "POST")
148
publicAPIRouter.HandleFunc("/auth/login/email/resend", resendEmailOtp).Methods("GET", "POST")
149
publicAPIRouter.HandleFunc("/auth/verify", verifySession).Methods("POST")
0 commit comments