로그 리스트 항목 생성

This commit is contained in:
2026-03-26 11:36:21 +09:00
parent 0b6ed3df73
commit c22b023310
6 changed files with 1032 additions and 25 deletions

View File

@@ -697,3 +697,12 @@ $routes->post('/login/chkLogin', 'Login::chkLogin');
if (is_file($filepath = APPPATH . 'Config/Routes/Api.php')) {
require $filepath;
}
/**
* Worker 관리
*/
$routes->group('manage/worker', ['namespace' => 'App\Controllers\Manage'], function ($routes) {
$routes->get('failed', 'WorkerLogController::failedList');
$routes->post('retry', 'WorkerLogController::retrySelected');
$routes->get('detail/(:num)', 'WorkerLogController::detail/$1');
});