refactor: delete classpaths tree api
This commit is contained in:
parent
2096e6ea8d
commit
2bf4a25dd1
|
@ -86,7 +86,6 @@ func configRoutes(r *gin.Engine) {
|
|||
pages.DELETE("/user-group/:id", login(), userGroupDel)
|
||||
|
||||
pages.GET("/classpaths", login(), classpathListGets)
|
||||
pages.GET("/classpaths/tree", login(), classpathListNodeGets)
|
||||
pages.GET("/classpaths/tree-node/:id", login(), classpathListNodeGetsById)
|
||||
pages.POST("/classpaths", login(), classpathAdd)
|
||||
pages.PUT("/classpath/:id", login(), classpathPut)
|
||||
|
|
|
@ -24,6 +24,7 @@ func classpathListGets(c *gin.Context) {
|
|||
}, nil)
|
||||
}
|
||||
|
||||
//此api暂时不对外开放
|
||||
func classpathListNodeGets(c *gin.Context) {
|
||||
query := queryStr(c, "query", "")
|
||||
|
||||
|
|
Loading…
Reference in New Issue