This commit is contained in:
amazuecos
2025-02-18 08:15:14 +00:00
parent eea415fb47
commit 4b1092df5f
9 changed files with 498 additions and 0 deletions

View File

@ -0,0 +1,8 @@
<?php
use CodeIgniter\Router\RouteCollection;
$routes->group('wiki', ['namespace' => 'App\Controllers\Wiki'], function ($routes) {
$routes->get('','WikiController::index',["as" => "wikiIndex"]);
});