mirror of
https://github.com/JGH0/Todo-App-Backend.git
synced 2026-06-03 13:28:47 +02:00
14 lines
337 B
PHP
14 lines
337 B
PHP
<?php
|
|
|
|
use CodeIgniter\Router\RouteCollection;
|
|
|
|
/**
|
|
* @var RouteCollection $routes
|
|
*/
|
|
$routes->get('/', 'Home::index');
|
|
|
|
$routes->get('/auth/login', 'Auth::login');
|
|
$routes->post('/auth/attemptLogin', 'Auth::attemptLogin');
|
|
$routes->post('/auth/attemptRegister', 'Auth::attemptRegister');
|
|
$routes->get('/auth/logout', 'Auth::logout');
|