mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-12-16 08:04:08 +08:00
9779c1a357
Put together an initial notification. Started logic to query and identify watchers.
15 lines
326 B
PHP
15 lines
326 B
PHP
<?php
|
|
|
|
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, User $user): void
|
|
{
|
|
// TODO
|
|
}
|
|
}
|