empty path leads to home view
This commit is contained in:
parent
7e33103bc9
commit
27f5638ebc
1 changed files with 1 additions and 0 deletions
|
|
@ -27,6 +27,7 @@ $app->post('/api/auth/register', [AuthController::class, 'register']);
|
|||
|
||||
// Authenticated routes (any logged-in user)
|
||||
$app->group('', function (RouteCollectorProxy $group) {
|
||||
$group->get('/', [ViewController::class, 'home']);
|
||||
$group->get('/home', [ViewController::class, 'home']);
|
||||
$group->get('/today', [ViewController::class, 'today']);
|
||||
$group->get('/texts', [ViewController::class, 'userTexts']);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue