flarum-msteams-webhook/extend.php

14 lines
259 B
PHP

<?php
declare(strict_types=1);
use Flarum\Extend;
use SbpJm\FlarumMSTeamsWebhook\Listener\MirrorAlertsToTeams;
return [
(new Extend\Locales(__DIR__ . '/locale')),
(new Extend\Notification())
->beforeSending(MirrorAlertsToTeams::class),
];