[COMPONENT][Notification] Add event to decide whether local actors should be bothered
This commit is contained in:
parent
4d8e39bf69
commit
846ec37cd9
|
@ -82,12 +82,14 @@ class Notification extends Component
|
|||
continue;
|
||||
}
|
||||
}
|
||||
if (Event::handle('NewNotificationShould', [$activity, $target]) === Event::next) {
|
||||
// TODO: use https://symfony.com/doc/current/notifier.html
|
||||
DB::persist(Entity\Notification::create([
|
||||
'activity_id' => $activity->getId(),
|
||||
'target_id' => $target->getId(),
|
||||
'reason' => $reason,
|
||||
]));
|
||||
}
|
||||
} else {
|
||||
// We have no authority nor responsibility of notifying remote actors of a remote actor's doing
|
||||
if ($sender->getIsLocal()) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user