Resolve merge conflict in Routes.php

This commit is contained in:
2025-12-15 14:58:27 +09:00
parent 388ba4dddb
commit c129af9a9b

View File

@@ -70,23 +70,6 @@ $routes->group('manage', ['namespace' => 'App\Controllers\Manage'], function ($r
$routes->get('user/excel', 'User::excel'); $routes->get('user/excel', 'User::excel');
$routes->post('user/saveSms', 'User::saveSms'); $routes->post('user/saveSms', 'User::saveSms');
<<<<<<< HEAD
$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;
}
=======
/** API - 조직관리 */ /** API - 조직관리 */
$routes->get('dept/getDeptList', 'Dept::getDeptList'); $routes->get('dept/getDeptList', 'Dept::getDeptList');
$routes->get('dept/getUserList', 'Dept::getUserList'); $routes->get('dept/getUserList', 'Dept::getUserList');
@@ -127,4 +110,3 @@ if (is_file($filepath = APPPATH . 'Config/Routes/Api.php')) {
* 로그인 API * 로그인 API
*/ */
$routes->post('/login/chkLogin', 'Login::chkLogin'); $routes->post('/login/chkLogin', 'Login::chkLogin');
>>>>>>> feature/template