From b5c12928eba80568f68543870bf446e207002345 Mon Sep 17 00:00:00 2001 From: jjstyle Date: Mon, 15 Dec 2025 14:59:42 +0900 Subject: [PATCH] Add additional routing configuration --- app/Config/Routes.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/app/Config/Routes.php b/app/Config/Routes.php index 15f60b7..5b9c28d 100644 --- a/app/Config/Routes.php +++ b/app/Config/Routes.php @@ -110,3 +110,16 @@ $routes->group('manage', ['namespace' => 'App\Controllers\Manage'], function ($r * 로그인 API */ $routes->post('/login/chkLogin', 'Login::chkLogin'); + + +/* + * -------------------------------------------------------------------- + * Additional Routing + * -------------------------------------------------------------------- + * + * 이 영역에서 다른 라우트 파일을 로드할 수 있습니다. + */ + +if (is_file($filepath = APPPATH . 'Config/Routes/Api.php')) { + require $filepath; +}