更新接口

This commit is contained in:
2026-07-17 11:57:10 +08:00
parent 9b788189fd
commit 7ab6958538
3 changed files with 96 additions and 18 deletions
+1
View File
@@ -110,6 +110,7 @@ func RegisterAuthRoutes() {
// 文章管理
beego.Router("/backend/articlesList", &controllers.BackendArticleController{}, "get:List")
beego.Router("/backend/contentstats", &controllers.BackendArticleController{}, "get:ContentStats")
beego.Router("/backend/allarticles", &controllers.BackendArticleController{}, "get:ListAll")
beego.Router("/backend/articles/:id", &controllers.BackendArticleController{}, "get:Detail")
beego.Router("/backend/createarticle", &controllers.BackendArticleController{}, "post:Create")