forked from akhoury/nodebb-plugin-spam-be-gone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.json
26 lines (26 loc) · 1.06 KB
/
plugin.json
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
{
"id": "nodebb-plugin-spam-be-gone-gfw",
"name": "Spam Be Gone",
"description": "anti spam using both Akismet.com, StopForumSpam.com and Re-Captcha",
"url": "https://github.com/Magictea-Intl/nodebb-plugin-spam-be-gone-gfw",
"library": "./library.js",
"templates": "templates",
"scripts": [
"public/js/scripts.js"
],
"less": [
"public/less/styles.less"
],
"hooks": [
{"hook": "static:app.load", "method": "load"},
{"hook": "filter:admin.header.build", "method": "admin.menu"},
{"hook": "filter:register.build", "method": "addCaptcha", "priority": 5},
{"hook": "filter:register.check", "method": "checkRegister", "priority": 5},
{"hook": "filter:topic.post", "method": "onTopicPost", "priority": 5},
{"hook": "filter:topic.reply", "method": "onTopicReply", "priority": 5},
{"hook": "filter:topic.edit", "method": "onTopicEdit"},
{"hook": "filter:post.edit", "method": "onPostEdit"},
{"hook": "action:flags.create", "method": "onPostFlagged", "priority": 5}
],
"faIcon": "fa-shield"
}