20 lines
493 B
PHP
20 lines
493 B
PHP
<?php
|
|
$framework_routes = [
|
|
'/novaconium' => [
|
|
'get' => 'NOVACONIUM/init'
|
|
],
|
|
'/novaconium/create_admin' => [
|
|
'post' => 'NOVACONIUM/create_admin'
|
|
],
|
|
'/novaconium/login' => [
|
|
'post' => 'NOVACONIUM/authenticate',
|
|
'get' => 'NOVACONIUM/login'
|
|
],
|
|
'/novaconium/dashboard' => [
|
|
'get' => 'NOVACONIUM/dashboard'
|
|
],
|
|
'/novaconium/logout' => [
|
|
'post' => 'NOVACONIUM/logout',
|
|
'get' => 'NOVACONIUM/logout'
|
|
]
|
|
]; |