forked from yariplus/nodebb-plugin-newsletter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
25 lines (25 loc) · 814 Bytes
/
plugin.json
File metadata and controls
25 lines (25 loc) · 814 Bytes
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
{
"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",
"staticDirs": {
"public": "./public"
},
"scripts": [
"public/js/client.js"
],
"less": [
"public/less/style.less"
],
"library": "./library.js",
"hooks": [
{ "hook": "static:app.load", "method": "load" },
{ "hook": "filter:admin.header.build", "method": "adminHeader" },
{ "hook": "filter:user.settings", "method": "filterUserSettings" },
{ "hook": "filter:user.getSettings", "method": "filterUserGetSettings" },
{ "hook": "action:user.saveSettings", "method": "actionSaveSettings" }
],
"templates": "./public/templates",
"languages": "public/language"
}