Send Brrr push notifications for new webmentions

Dispatches a queued job to POST to a configured Brrr webhook whenever
a brand-new webmention is saved, so replies/likes/reposts show up as
push notifications instead of requiring a manual check of the site.
This commit is contained in:
Jonny Barnes 2026-08-02 18:07:39 +01:00
commit f9f2744fad
Signed by: jonny
SSH key fingerprint: SHA256:CTuSlns5U7qlD9jqHvtnVmfYV3Zwl2Z7WnJ4/dqOaL8
6 changed files with 138 additions and 0 deletions

View file

@ -96,6 +96,7 @@ class ProcessWebMention implements ShouldQueue
$webmention->type = $type;
$webmention->mf2 = json_encode($microformats);
$webmention->save();
dispatch(new NotifyBrrrOfWebMention($webmention));
}
/**