mirror of
https://github.com/Karaka-Management/oms-OnlineResourceWatcher.git
synced 2026-01-25 06:08:40 +00:00
16 lines
493 B
PHP
Executable File
16 lines
493 B
PHP
Executable File
<?php
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'.*?/about' => 'FrontController:aboutView',
|
|
'.*?/imprint' => 'FrontController:imprintView',
|
|
'.*?/terms' => 'FrontController:termsView',
|
|
'.*?/privacy' => 'FrontController:privacyView',
|
|
'.*?/contact' => 'FrontController:contactView',
|
|
|
|
'^/*$' => 'FrontController:frontView',
|
|
'.*?/login' => 'FrontController:loginView',
|
|
|
|
'.*?/api/download' => 'ApiController:downloadView',
|
|
];
|