novaconium/config/routes.php
2025-08-12 23:08:20 -07:00

29 lines
728 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/pages' => [
'get' => 'NOVACONIUM/pages'
],
'/novaconium/page/edit/{id}' => [
'get' => 'NOVACONIUM/editpage'
],
'/novaconium/savePage' => [
'post' => 'NOVACONIUM/savepage'
],
'/novaconium/logout' => [
'post' => 'NOVACONIUM/logout',
'get' => 'NOVACONIUM/logout'
]
];