비밀번호 변경

This commit is contained in:
kyy
2026-01-27 12:28:39 +09:00
parent b013184bf7
commit d922de5df6
4 changed files with 190 additions and 1 deletions
+5
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)