1
0
forked from baron/baron-sso

비밀번호 변경

This commit is contained in:
2026-01-26 19:07:40 +09:00
parent b013184bf7
commit d922de5df6
4 changed files with 190 additions and 1 deletions

View File

@@ -228,6 +228,11 @@ func main() {
auth.Post("/enchanted-link/poll", authHandler.PollEnchantedLink)
auth.Post("/magic-link/verify", authHandler.VerifyMagicLink)
auth.Post("/password/login", authHandler.PasswordLogin)
// ✅ 비밀번호 재설정 (추가)
auth.Post("/password-reset/init", authHandler.InitPasswordReset)
auth.Post("/password-reset/confirm", authHandler.ConfirmPasswordReset)
auth.Post("/sms", authHandler.SendSms)
auth.Post("/verify-sms", authHandler.VerifySms)
auth.Post("/qr/init", authHandler.InitQRLogin)