feat: 附件(下载管理)添加禁/启用操作接口

This commit is contained in:
2025-02-25 09:49:25 +08:00
parent 054b882729
commit 9746493f6b
3 changed files with 23 additions and 0 deletions

View File

@@ -292,6 +292,9 @@ Route::group('v1', function () {
// 附件(下载管理)设置排序值
Route::post('sort/:id', 'Attachment/sort');
// 附件(下载管理)禁/启用
Route::get('enable/:id', 'Attachment/enable');
// 附件(下载管理)删除
Route::delete('delete/:id', 'Attachment/delete');