add line push message api

This commit is contained in:
Jay
2019-03-29 14:19:39 +00:00
parent 4b7149b66b
commit 3452662b72
2 changed files with 23 additions and 0 deletions
+1
View File
@@ -76,6 +76,7 @@ func SetRoutes(r *gin.Engine) {
})
apiGroup.POST("/login", context.PatchCtx(api.UserLogin))
apiGroup.POST("/logout", context.PatchCtx(api.UserLogout))
apiGroup.POST("/line/push", context.PatchCtx(api.CheckSession), context.PatchCtx(api.PushLineMessage))
apiGroup.GET("/line/logs", context.PatchCtx(api.CheckSession), context.PatchCtx(api.GetLineMessageLog))
apiGroup.GET("/line/groups", context.PatchCtx(api.CheckSession), context.PatchCtx(api.GetLineList))
apiGroup.GET("/line/cmds", context.PatchCtx(api.CheckSession), context.PatchCtx(api.GetCommandList))