-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
extend.php
41 lines (31 loc) · 1013 Bytes
/
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
<?php
/*
* This file is part of fof/secure-https.
*
* Copyright (c) FriendsOfFlarum.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace FoF\SecureHttps;
use Flarum\Api\Serializer\BasicPostSerializer;
use Flarum\Extend;
return [
(new Extend\Frontend('admin'))
->js(__DIR__.'/js/dist/admin.js'),
new Extend\Locales(__DIR__.'/resources/locale'),
(new Extend\Routes('api'))
->get(
'/fof/secure-https',
'fof.secure-https.imgurl',
Api\Controllers\GetImageUrlController::class
),
(new Extend\Formatter())
->render(FormatImages::class),
(new Extend\Middleware('forum'))
->add(Middlewares\ContentSecurityPolicyMiddleware::class),
(new Extend\ApiSerializer(BasicPostSerializer::class))
->attributes(ModifyContentHtml::class),
(new Extend\Settings())
->default('fof-secure-https.proxy', false),
];