feat: 新增文章分类设置排序值接口

This commit is contained in:
2025-02-13 15:38:24 +08:00
parent 4072efe739
commit f4cf326a1c
3 changed files with 29 additions and 8 deletions

View File

@@ -81,6 +81,9 @@ Route::group('v1', function () {
// 分类更新
Route::put('update/:id', 'ArticleCategory/update');
// 设置排序值
Route::post('sort/:id', 'ArticleCategory/sort');
// 分类删除
Route::delete('delete/:id', 'ArticleCategory/delete');
});