-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
extend.php
42 lines (32 loc) · 1.15 KB
/
extend.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
/*
* This file is part of Flarum.
*
* For detailed copyright and license information, please view the
* LICENSE file that was distributed with this source code.
*/
use Flarum\Extend;
use Flarum\Post\Event\Posted;
use Flarum\Pusher\Api\Controller\AuthController;
use Flarum\Pusher\Listener;
use Flarum\Pusher\Provider\PusherProvider;
use Flarum\Pusher\PusherNotificationDriver;
return [
(new Extend\Frontend('forum'))
->js(__DIR__.'/js/dist/forum.js')
->css(__DIR__.'/less/forum.less'),
(new Extend\Frontend('admin'))
->js(__DIR__.'/js/dist/admin.js'),
(new Extend\Routes('api'))
->post('/pusher/auth', 'pusher.auth', AuthController::class),
new Extend\Locales(__DIR__.'/locale'),
(new Extend\Notification())
->driver('pusher', PusherNotificationDriver::class),
(new Extend\Settings())
->serializeToForum('pusherKey', 'flarum-pusher.app_key')
->serializeToForum('pusherCluster', 'flarum-pusher.app_cluster'),
(new Extend\Event())
->listen(Posted::class, Listener\PushNewPost::class),
(new Extend\ServiceProvider())
->register(PusherProvider::class),
];