-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathplugin.json
More file actions
31 lines (31 loc) · 1.1 KB
/
plugin.json
File metadata and controls
31 lines (31 loc) · 1.1 KB
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
{
"id": "nodebb-plugin-newsletter",
"name": "NodeBB Plugin Newsletter",
"description": "Send an email newsletter to all users or a group of users.",
"url": "https://github.com/yariplus/nodebb-plugin-newsletter",
"library": "lib/index.js",
"templates": "public/templates",
"languages": "public/language",
"scripts": [
"public/js/topic.js"
],
"modules": {
"../admin/plugins/newsletter.js": "./public/js/acp.js",
"quill.js": "./public/js/quill.min.js"
},
"scss": [
"public/scss/style.scss"
],
"acpScss": [
"public/scss/acp.scss"
],
"hooks": [
{ "hook": "static:app.load", "method": "load" },
{ "hook": "filter:admin.header.build", "method": "adminHeader" },
{ "hook": "filter:user.customSettings", "method": "filterUserCustomSettings" },
{ "hook": "filter:user.getSettings", "method": "filterUserGetSettings" },
{ "hook": "filter:user.saveSettings", "method": "filterSaveSettings" },
{ "hook": "filter:email.params", "method": "filterEmailParams" },
{ "hook": "filter:email.modify", "method": "filterEmailModify" }
]
}