Fix /notes/new page so it is not a 404

This commit is contained in:
Jonny Barnes 2022-08-13 16:00:06 +01:00
parent 8817ff1719
commit 5e5f74f4ed
Signed by: jonny
SSH key fingerprint: SHA256:CTuSlns5U7qlD9jqHvtnVmfYV3Zwl2Z7WnJ4/dqOaL8
3 changed files with 20 additions and 0 deletions

View file

@ -142,6 +142,7 @@ Route::group(['domain' => config('url.longurl')], function () {
Route::get('/feed.atom', [FeedsController::class, 'notesAtom']);
Route::get('/feed.json', [FeedsController::class, 'notesJson']);
Route::get('/feed.jf2', [FeedsController::class, 'notesJf2']);
Route::get('/new', [NotesController::class, 'create']);
Route::get('/{id}', [NotesController::class, 'show']);
Route::get('/tagged/{tag}', [NotesController::class, 'tagged']);
});