Browse Source

Merge branch 'feature/google_translate' into debug

xiexiaoyuan 2 years ago
parent
commit
51830a2b0c
3 changed files with 3 additions and 3 deletions
  1. 1 1
      controllers/english_report.go
  2. 1 1
      routers/commentsRouter.go
  3. 1 1
      services/english_policy_report.go

+ 1 - 1
controllers/english_report.go

@@ -12,7 +12,7 @@ type EnglishReportController struct {
 // PublishNotify
 // @Title 策略报告发布通知
 // @Description 策略报告发布通知
-// @router /publish/notify [get]
+// @router /notify [get]
 func (c *EnglishReportController) PublishNotify()  {
 	// 解析出url上的参数值如下:
 	id, err := c.GetInt("id")

+ 1 - 1
routers/commentsRouter.go

@@ -55,7 +55,7 @@ func init() {
     beego.GlobalControllerRouter["hongze/hongze_open_api/controllers:EnglishReportController"] = append(beego.GlobalControllerRouter["hongze/hongze_open_api/controllers:EnglishReportController"],
         beego.ControllerComments{
             Method: "PublishNotify",
-            Router: `/publish/notify`,
+            Router: `/notify`,
             AllowHTTPMethods: []string{"get"},
             MethodParams: param.Make(),
             Filters: nil,

+ 1 - 1
services/english_policy_report.go

@@ -297,7 +297,7 @@ type ApiDebugResponse struct {
 }
 
 func TestDebugEnglishPolicyReport(id int) (err error) {
-	url := fmt.Sprintf("http://8.136.199.33:8608/api/en/report/publish/notify?id=%d", id)
+	url := fmt.Sprintf("http://8.136.199.33:8608/api/en/report/notify?id=%d", id)
 	ret, err := http.Get(url)
 	if err != nil {
 		return