mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
8 lines
205 B
PHP
8 lines
205 B
PHP
<?php
|
|
|
|
use CodeIgniter\Router\RouteCollection;
|
|
|
|
|
|
$routes->group('wiki', ['namespace' => 'App\Controllers\Wiki'], function ($routes) {
|
|
$routes->get('','WikiController::index',["as" => "wikiIndex"]);
|
|
}); |