mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-07-30 04:23:11 +03:00
Notifications: Linked watch functionality to UI
Got watch system working to an initial base state. Moved some existing logic where it makes sense.
This commit is contained in:
@ -194,6 +194,9 @@ Route::middleware('auth')->group(function () {
|
||||
Route::post('/favourites/add', [ActivityControllers\FavouriteController::class, 'add']);
|
||||
Route::post('/favourites/remove', [ActivityControllers\FavouriteController::class, 'remove']);
|
||||
|
||||
// Watching
|
||||
Route::put('/watching/update', [ActivityControllers\WatchController::class, 'update']);
|
||||
|
||||
// Other Pages
|
||||
Route::get('/', [HomeController::class, 'index']);
|
||||
Route::get('/home', [HomeController::class, 'index']);
|
||||
|
Reference in New Issue
Block a user