Browse Source

Merge branch 'ETA_1.13' into debug

ziwen 1 year ago
parent
commit
33d4980f0f
1 changed files with 5 additions and 0 deletions
  1. 5 0
      routers/router.go

+ 5 - 0
routers/router.go

@@ -294,6 +294,11 @@ func init() {
 				&controllers.UserLoginAuthController{},
 			),
 		),
+		web.NSNamespace("/meeting_probabilities",
+			web.NSInclude(
+				&controllers.MeetingProbabilitiesController{},
+			),
+		),
 	)
 	web.AddNamespace(ns)
 }