* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ use Flarum\Akismet\Listener; use Flarum\Extend; use Illuminate\Contracts\Events\Dispatcher; return [ (new Extend\Assets('forum')) ->js(__DIR__.'/js/dist/forum.js'), (new Extend\Assets('admin')) ->js(__DIR__.'/js/dist/admin.js'), function (Dispatcher $events) { $events->subscribe(Listener\FilterNewPosts::class); }, ];