Merge pull request #361 from jonnybarnes/360-fix-micropubcreate-page-as-well
Redirect `/micropub/create` page to `/notes/new` page
This commit is contained in:
commit
e23ba75021
1 changed files with 3 additions and 0 deletions
|
@ -183,6 +183,9 @@ Route::group(['domain' => config('url.longurl')], function () {
|
|||
// Places
|
||||
Route::get('places', [PlacesController::class, 'index']);
|
||||
Route::get('places/{place}', [PlacesController::class, 'show']);
|
||||
|
||||
// Micropub
|
||||
Route::redirect('/micropub/create', '/notes/new');
|
||||
});
|
||||
|
||||
// Short URL
|
||||
|
|
Loading…
Add table
Reference in a new issue