Refactor method names/views for Notes
This commit is contained in:
parent
e320bec899
commit
5edb495bcb
5 changed files with 11 additions and 11 deletions
|
@ -93,10 +93,10 @@ Route::group(['domain' => config('url.longurl')], function () {
|
|||
Route::post('notes/new', 'MicropubClientController@postNewNote');
|
||||
|
||||
//Notes pages using NotesController
|
||||
Route::get('notes', 'NotesController@showNotes');
|
||||
Route::get('note/{id}', 'NotesController@singleNoteRedirect');
|
||||
Route::get('notes/{id}', 'NotesController@singleNote');
|
||||
Route::get('notes/tagged/{tag}', 'NotesController@taggedNotes');
|
||||
Route::get('notes', 'NotesController@index');
|
||||
Route::get('notes/{id}', 'NotesController@show');
|
||||
Route::get('note/{id}', 'NotesController@redirect');
|
||||
Route::get('notes/tagged/{tag}', 'NotesController@tagged');
|
||||
|
||||
//indieauth
|
||||
Route::any('beginauth', 'IndieAuthController@beginauth');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue