13 lines
274 B
PHP
13 lines
274 B
PHP
<?php
|
|
|
|
use CodeIgniter\Router\RouteCollection;
|
|
|
|
/**
|
|
* @var RouteCollection $routes
|
|
*/
|
|
$routes->get('/', 'Home::index');
|
|
|
|
|
|
$routes->post('/digiusers/v1/identity/token', 'DigiFiAuth::starttoken');
|
|
$routes->post('/digiusers/v1/identity/otoken', 'DigiFiAuth::starttoken');
|