mirror of
https://github.com/JGH0/Todo-App-Backend.git
synced 2026-06-03 13:28:47 +02:00
15 lines
350 B
PHP
15 lines
350 B
PHP
<?php
|
|
|
|
use CodeIgniter\Router\RouteCollection;
|
|
|
|
/**
|
|
* @var RouteCollection $routes
|
|
*/
|
|
$routes->get('/', 'Home::index');
|
|
<<<<<<< Updated upstream
|
|
=======
|
|
$routes->get('/themes', 'ThemeStore::index');
|
|
$routes->post('/themes/upload', 'ThemeStore::upload');
|
|
$routes->get('/themes/preview/(:segment)', 'ThemeStore::preview/$1');
|
|
>>>>>>> Stashed changes
|