1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-08-07 23:03:00 +03:00

Notifications: Started core user notification logic

Put together an initial notification.
Started logic to query and identify watchers.
This commit is contained in:
Dan Brown
2023-08-04 12:27:29 +01:00
parent 9d149e4d36
commit 9779c1a357
13 changed files with 258 additions and 42 deletions

View File

@@ -3,10 +3,11 @@
namespace BookStack\Activity\Notifications\Handlers;
use BookStack\Activity\Models\Loggable;
use BookStack\Users\Models\User;
class PageUpdateNotificationHandler implements NotificationHandler
{
public function handle(string $activityType, Loggable|string $detail): void
public function handle(string $activityType, Loggable|string $detail, User $user): void
{
// TODO
}