1
0
mirror of https://github.com/typemill/typemill.git synced 2025-08-08 15:16:53 +02:00

Version 1.0.4 optimized author panel and refactoring

This commit is contained in:
Sebastian
2018-04-30 16:05:04 +02:00
parent ef704daa6e
commit 7bf12c6fa0
59 changed files with 900 additions and 653 deletions

View File

@@ -15,7 +15,15 @@ if($settings['settings']['setup'])
}
else
{
$app->get('/setup', AuthController::class . ':redirect');
$app->get('/setup', AuthController::class . ':redirect');
}
if($settings['settings']['welcome'])
{
$app->get('/setup/welcome', SetupController::class . ':welcome')->setName('setup.welcome')->add(new RedirectIfUnauthenticated($container['router'], $container['flash']));
}
else
{
$app->get('/setup/welcome', AuthController::class . ':redirect')->setName('setup.welcome');
}
$app->get('/tm-author', AuthController::class . ':redirect');