UNPKG

1.12 kBJSONView Raw
1{
2 "id": "nodebb-plugin-mentions",
3 "name": "Username Mentions",
4 "description": "NodeBB Plugin that allows users to mention other users by prepending an '@' sign to their username",
5 "url": "https://github.com/julianlam/nodebb-plugin-mentions",
6 "library": "./library.js",
7 "upgrades": [
8 "upgrades/mentions_delete_mentions_set_zset.js"
9 ],
10 "hooks": [
11 { "hook": "static:app.load", "method": "init" },
12 { "hook": "filter:admin.header.build", "method": "addAdminNavigation" },
13 { "hook": "filter:parse.post", "method": "parsePost" },
14 { "hook": "filter:parse.raw", "method": "parseRaw" },
15 { "hook": "action:post.save", "method": "notify" },
16 { "hook": "action:post.edit", "method": "notify" },
17 { "hook": "filter:notifications.addFilters", "method": "addFilters" },
18 { "hook": "filter:user.notificationTypes", "method": "notificationTypes" },
19 { "hook": "filter:users.addFields", "method": "addFields" }
20 ],
21 "scripts": [
22 "static/autofill.js"
23 ],
24 "acpScripts": [
25 "static/admin.js"
26 ],
27 "languages": "languages",
28 "defaultLang": "en_GB",
29 "templates": "templates"
30}
\No newline at end of file