diff --git a/api/core/app_server.go b/api/core/app_server.go index 23ef6e1..d8f59dc 100644 --- a/api/core/app_server.go +++ b/api/core/app_server.go @@ -175,8 +175,8 @@ func authorizeMiddleware(s *AppServer) gin.HandlerFunc { if c.Request.URL.Path == "/api/user/login" || c.Request.URL.Path == "/api/admin/login" || c.Request.URL.Path == "/api/user/register" || - c.Request.URL.Path == "/api/sms/status" || - strings.HasPrefix(c.Request.URL.Path, "/api/verify/") || + strings.HasPrefix(c.Request.URL.Path, "/api/sms/") || + strings.HasPrefix(c.Request.URL.Path, "/api/captcha/") || strings.HasPrefix(c.Request.URL.Path, "/static/") || c.Request.URL.Path == "/api/admin/config/get" { c.Next() diff --git a/api/handler/sms_handler.go b/api/handler/sms_handler.go index c5fe92b..665baa7 100644 --- a/api/handler/sms_handler.go +++ b/api/handler/sms_handler.go @@ -25,8 +25,8 @@ func NewSmsHandler(app *core.AppServer, db *store.LevelDB, sms *service.AliYunSm return handler } -// VerifyCode 发送验证码短信 -func (h *SmsHandler) VerifyCode(c *gin.Context) { +// SendCode 发送验证码短信 +func (h *SmsHandler) SendCode(c *gin.Context) { var data struct { Mobile string `json:"mobile"` Key string `json:"key"` diff --git a/api/main.go b/api/main.go index 1a64934..0d8b13e 100644 --- a/api/main.go +++ b/api/main.go @@ -181,7 +181,7 @@ func main() { fx.Invoke(func(s *core.AppServer, h *handler.SmsHandler) { group := s.Engine.Group("/api/sms/") group.GET("status", h.Status) - group.POST("code", h.VerifyCode) + group.POST("code", h.SendCode) }), fx.Invoke(func(s *core.AppServer, h *handler.CaptchaHandler) { group := s.Engine.Group("/api/captcha/")