forked from FriendsOfFlarum/spamblock
-
Notifications
You must be signed in to change notification settings - Fork 1
/
extend.php
35 lines (26 loc) · 869 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
<?php
/*
* This file is part of fof/spamblock.
*
* Copyright (c) FriendsOfFlarum.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace FoF\Spamblock;
use Flarum\Api\Serializer\UserSerializer;
use Flarum\Extend;
use Flarum\User\User;
return [
(new Extend\Frontend('forum'))
->js(__DIR__.'/js/dist/forum.js'),
(new Extend\Frontend('admin'))
->js(__DIR__.'/js/dist/admin.js'),
new Extend\Locales(__DIR__.'/locale'),
(new Extend\Routes('api'))
->post('/users/{id}/spamblock', 'users.spamblock', Controllers\MarkAsSpammerController::class),
(new Extend\ApiSerializer(UserSerializer::class))
->attributes(AddPermissions::class),
(new Extend\Policy())
->modelPolicy(User::class, Access\UserPolicy::class),
];