|
@@ -33,7 +33,7 @@ class CmsPostController : BaseController() {
|
|
|
* @param deep 是否显示栏目下子栏目的文章
|
|
|
* @param post 过滤条件
|
|
|
*/
|
|
|
- @GetMapping(path = ["/{contentType:article|page|video|picture|custom}/{termAlias}/list", "/{contentType:article|page|video|picture|custom}/list"])
|
|
|
+ @GetMapping(path = ["/{contentType:article|page|video|picture|custom|dictionary}/{termAlias}/list", "/{contentType:article|page|video|picture|custom}/list"])
|
|
|
fun list(
|
|
|
@PathVariable("contentType") contentType: String,
|
|
|
@PathVariable(name = "termAlias", required = false) termAlias: String?,
|
|
@@ -58,7 +58,7 @@ class CmsPostController : BaseController() {
|
|
|
* @param contentType 页面别名
|
|
|
* @return 页面详情信息
|
|
|
*/
|
|
|
- @GetMapping("/{contentType:article|page|video|picture|custom}/{post}")
|
|
|
+ @GetMapping("/{contentType:article|page|video|picture|custom|dictionary}/{post}")
|
|
|
fun detail(
|
|
|
@PathVariable("contentType") contentType: String,
|
|
|
@PathVariable("post") post: String,
|
|
@@ -70,7 +70,7 @@ class CmsPostController : BaseController() {
|
|
|
* 新增发布内容
|
|
|
*/
|
|
|
@Log(title = "发布内容管理", businessType = BusinessType.INSERT)
|
|
|
- @PostMapping("/{contentType:article|page|video|picture|custom}")
|
|
|
+ @PostMapping("/{contentType:article|page|video|picture|custom|dictionary}")
|
|
|
fun add(
|
|
|
@PathVariable("contentType") contentType: String,
|
|
|
@Validated @RequestBody cmsPostFormReq: CmsPostFormReq,
|
|
@@ -86,7 +86,7 @@ class CmsPostController : BaseController() {
|
|
|
* 修改发布内容
|
|
|
*/
|
|
|
@Log(title = "发布内容管理", businessType = BusinessType.UPDATE)
|
|
|
- @PutMapping("/{contentType:article|page|video|picture|custom}")
|
|
|
+ @PutMapping("/{contentType:article|page|video|picture|custom|dictionary}")
|
|
|
fun edit(
|
|
|
@PathVariable("contentType") contentType: String,
|
|
|
@Validated @RequestBody cmsPostFormReq: CmsPostFormReq,
|
|
@@ -101,7 +101,7 @@ class CmsPostController : BaseController() {
|
|
|
* @param postIds 内容ID列表
|
|
|
*/
|
|
|
@Log(title = "发布内容管理", businessType = BusinessType.DELETE)
|
|
|
- @DeleteMapping("/{contentType:article|page|video|picture|custom}/{postIds}")
|
|
|
+ @DeleteMapping("/{contentType:article|page|video|picture|custom|dictionary}/{postIds}")
|
|
|
fun remove(
|
|
|
@PathVariable("contentType") contentType: String,
|
|
|
@PathVariable("postIds") postIds: Array<Int>,
|
|
@@ -118,7 +118,7 @@ class CmsPostController : BaseController() {
|
|
|
* @return 处理结果
|
|
|
*/
|
|
|
@Log(title = "审核内容", businessType = BusinessType.UPDATE)
|
|
|
- @PostMapping("/{contentType:article|page|video|picture|custom}/review/{post}")
|
|
|
+ @PostMapping("/{contentType:article|page|video|picture|custom|dictionary}/review/{post}")
|
|
|
fun review(
|
|
|
@PathVariable("contentType") contentType: String,
|
|
|
@PathVariable("post") post: String,
|