Add the page for tagged bookmarks

This commit is contained in:
Jonny Barnes 2022-08-14 17:56:21 +01:00
parent e23ba75021
commit a0954bc936
Signed by: jonny
SSH key fingerprint: SHA256:CTuSlns5U7qlD9jqHvtnVmfYV3Zwl2Z7WnJ4/dqOaL8
3 changed files with 63 additions and 0 deletions

View file

@ -158,6 +158,7 @@ Route::group(['domain' => config('url.longurl')], function () {
Route::group(['prefix' => 'bookmarks'], function () {
Route::get('/', [BookmarksController::class, 'index']);
Route::get('/{bookmark}', [BookmarksController::class, 'show']);
Route::get('/tagged/{tag}', [BookmarksController::class, 'tagged']);
});
// Token Endpoint