From 663c8e235ca4b8f26f8ada4f9d91b45279ef41a6 Mon Sep 17 00:00:00 2001 From: "jiaji.H" Date: Thu, 25 Sep 2025 17:06:49 +0800 Subject: [PATCH] =?UTF-8?q?Updata=EF=BC=9A=E6=9B=B4=E6=94=B9=E8=B7=AF?= =?UTF-8?q?=E5=BE=84=E8=AE=BF=E9=97=AE=E6=9D=83=E9=99=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg/router/router.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/router/router.go b/pkg/router/router.go index c4bdc39..83d1ced 100644 --- a/pkg/router/router.go +++ b/pkg/router/router.go @@ -209,7 +209,7 @@ func NewRouter() *gin.Engine { emailAlertsRoute := v1.Group("/emailalerts") emailAlertsRouteLogin := emailAlertsRoute.Group("", middleware.CheckWebLogin(service.AccountProvider)) - emailAlertsRouteLogin.POST("/submit", emailAlert.EmailAlertSubmit) + emailAlertsRoute.POST("/submit", emailAlert.EmailAlertSubmit) emailAlertsRouteLogin.POST("/list", emailAlert.GetEmailInformationList) } {