Basic bookmarks functionality
This commit is contained in:
parent
b840d164ed
commit
13e6ff1d0f
10 changed files with 173 additions and 0 deletions
|
@ -114,6 +114,12 @@ Route::group(['domain' => config('url.longurl')], function () {
|
|||
Route::get('/{like}', 'LikesController@show');
|
||||
});
|
||||
|
||||
// Bookmarks
|
||||
Route::group(['prefix' => 'bookmarks'], function () {
|
||||
Route::get('/', 'BookmarksController@index');
|
||||
Route::get('/{bookmark}', 'BookmarksController@show');
|
||||
});
|
||||
|
||||
// Micropub Client
|
||||
Route::group(['prefix' => 'micropub'], function () {
|
||||
Route::get('/create', 'MicropubClientController@create')->name('micropub-client');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue