feat: 添加视频回收站分页/恢复/删除接口

This commit is contained in:
2025-02-21 10:56:28 +08:00
parent 25005da55c
commit aac33677cd
2 changed files with 102 additions and 0 deletions

View File

@@ -87,6 +87,18 @@ Route::group('v1', function () {
// 视频分类删除
Route::delete('delete/:id', 'VideoCategory/delete');
});
// 视频回收站
Route::group('trash', function () {
// 视频回收站分页列表
Route::get('index', 'VideoTrash/index');
// 视频回收站还原
Route::get('restore/:id', 'VideoTrash/restore');
// 视频回收站删除
Route::delete('delete/:id', 'VideoTrash/delete');
});
});
// 文章模块