worker 와 라우터 수정
This commit is contained in:
@@ -62,3 +62,16 @@ $routes->post('/manage/dupl_phone/savePhone', 'Manage\Phone::savePhone'); // 전
|
||||
|
||||
$routes->get('/manage/loginlog/getLogList', 'Manage\LoginLog::getLogList'); // 로그 목록 조회
|
||||
$routes->get('/manage/loginlog/excel', 'Manage\LoginLog::excel'); // 엑셀다운로드
|
||||
|
||||
|
||||
/*
|
||||
* --------------------------------------------------------------------
|
||||
* Additional Routing
|
||||
* --------------------------------------------------------------------
|
||||
*
|
||||
* 이 영역에서 다른 라우트 파일을 로드할 수 있습니다.
|
||||
*/
|
||||
|
||||
if (is_file($filepath = APPPATH . 'Config/Routes/Api.php')) {
|
||||
require $filepath;
|
||||
}
|
||||
10
app/Config/Routes/Api.php
Normal file
10
app/Config/Routes/Api.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
// Routes 변수는 반드시 use 해야 합니다.
|
||||
use CodeIgniter\Router\RouteCollection;
|
||||
|
||||
/** @var RouteCollection $routes */
|
||||
|
||||
$routes->group('kiso', function(RouteCollection $routes) {
|
||||
$routes->get('api/vrfcReq', 'KisoController::vrfcReq');
|
||||
});
|
||||
Reference in New Issue
Block a user