feat: 新增文章评论审核/反审核接口

This commit is contained in:
2025-01-15 18:04:32 +08:00
parent cb69620e4c
commit d4066df49f
3 changed files with 28 additions and 0 deletions

View File

@@ -77,6 +77,9 @@ Route::group('v1', function () {
Route::group('message', function () {
// 留言列表
Route::get('index', 'ArticleLeaveMessage/index');
// 审核/反审核
Route::get('audit/:id', 'ArticleLeaveMessage/audit');
});
});
})->prefix('v1.');