From ac1d3c554c56c9f4c751b25e957c36291027c65f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=B5=9C=EC=A4=80=ED=9D=A0?= Date: Mon, 2 Mar 2026 13:00:11 +0900 Subject: [PATCH] daemon-idc init --- app/Config/Routes.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/Config/Routes.php b/app/Config/Routes.php index e9bc889..32f3869 100644 --- a/app/Config/Routes.php +++ b/app/Config/Routes.php @@ -16,6 +16,11 @@ $routes->addPlaceholder('uuid', '[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4} //2. Config/Filters.php -> $aliases = ['authFilter' => AuthFilter::class] $routes->group('cli', ['namespace' => 'App\Controllers\CLI'], function ($routes) { }); + +$routes->group('', ['namespace' => 'App\Controllers\Front'], function ($routes) { + $routes->get('/', 'WelcomeController::index'); +}); + $routes->group('auth', ['namespace' => 'App\Controllers\Auth'], function ($routes) { $routes->get('login', 'LocalController::login_form'); $routes->post('login', 'LocalController::login'); @@ -75,5 +80,4 @@ $routes->group('', ['namespace' => 'App\Controllers\Ajax'], function ($routes) { $routes->post('create', 'InquiryController::create'); }); }); - //choi.jh \ No newline at end of file