1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-08-09 10:22:51 +03:00

Notifications: Started activity->notification core framework

This commit is contained in:
Dan Brown
2023-07-19 11:03:05 +01:00
parent 1c922be4c7
commit 45e75edf05
5 changed files with 61 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace BookStack\Activity\Notifications\Handlers;
use BookStack\Activity\Models\Loggable;
class PageUpdateNotificationHandler implements NotificationHandler
{
public function handle(string $activityType, Loggable|string $detail): void
{
// TODO
}
}