Fix: Clean up controller namespace structure, remove duplicate Admin subdirectory controllers

This commit is contained in:
WLTBAgent
2026-02-16 16:20:00 +00:00
parent a8bf6bcb6c
commit 922f36d686
6 changed files with 7 additions and 190 deletions

View File

@@ -12,19 +12,19 @@ return [
'routes' => [
// Admin routes
[
'name' => 'Admin\PageController#index',
'name' => 'page#index',
'url' => '/',
'verb' => 'GET',
'requirements' => [],
],
[
'name' => 'Admin\AdminController#load',
'name' => 'admin#load',
'url' => '/admin/load',
'verb' => 'GET',
'requirements' => [],
],
[
'name' => 'Admin\AdminController#save',
'name' => 'admin#save',
'url' => '/admin/save',
'verb' => 'POST',
'requirements' => [],