1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-28 17:02:04 +03:00

Initial Draft

This commit is contained in:
JonatanRek
2023-08-10 15:44:27 +02:00
parent 1c922be4c7
commit 88e148ba00
3 changed files with 112 additions and 43 deletions

View File

@ -20,6 +20,7 @@ use Illuminate\View\Middleware\ShareErrorsFromSession;
Route::get('/status', [SettingControllers\StatusController::class, 'show']);
Route::get('/robots.txt', [HomeController::class, 'robots']);
Route::get('/favicon.ico', [HomeController::class, 'favicon']);
Route::get('/manifest.json', [HomeController::class, 'manifest']);
// Authenticated routes...
Route::middleware('auth')->group(function () {