-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathplugin.json
More file actions
23 lines (23 loc) · 807 Bytes
/
plugin.json
File metadata and controls
23 lines (23 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"id": "nodebb-plugin-contact-page",
"name": "NodeBB Plugin Contact page",
"url": "https://github.com/MinecraftForgeFrance/nodebb-plugin-contact-page",
"library": "./library.js",
"templates": "./static/templates",
"modules": {
"../admin/plugins/contact-page.js": "static/js/admin.js",
"../client/contact.js": "static/js/contact.js"
},
"scss": [
"static/style.scss"
],
"settingsRoute": "/admin/plugins/contact-page",
"hooks": [
{ "hook": "static:app.load", "method": "init" },
{ "hook": "filter:admin.header.build", "method": "addToAdminNav" },
{ "hook": "filter:config.get", "method": "getConfig" },
{ "hook": "filter:email.modify", "method": "modifyEmail"}
],
"languages": "languages",
"defaultLang": "en_GB"
}