forked from psychobunny/nodebb-plugin-paypal-subscriptions
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplugin.json
More file actions
49 lines (49 loc) · 1.37 KB
/
plugin.json
File metadata and controls
49 lines (49 loc) · 1.37 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"id": "nodebb-plugin-paypal-subscriptions",
"name": "Paypal Subscriptions",
"description": "A Paypal monetization plugin for NodeBB",
"url": "https://github.com/theunknownartisthour/nodebb-plugin-paypal-subscriptions",
"library": "./library.js",
"hooks": [
{
"hook": "static:app.load", "method": "init"
},
{
"hook": "filter:admin.header.build", "method": "admin.menu"
},
{
"hook": "filter:plugins.clearRequireCache", "method": "onClearRequireCache"
},
{
"hook": "action:plugin.activate", "method": "admin.activate"
},
{
"hook": "action:plugin.deactivate", "method": "admin.deactivate"
},
{
"hook": "action:plugin.uninstall", "method": "admin.uninstall"
},
{
"hook": "action:group.destroy", "method": "admin.onGroupDestroyed"
},
{
"hook": "action:group.join", "method": "admin.onUserJoinedGroup"
},
{
"hook": "action:group.leave", "method": "admin.onUserLeftGroup"
},
{
"hook": "action:group.update", "method": "admin.onGroupUpdated"
},
{
"hook": "action:group.rename", "method": "admin.onGroupRenamed"
}
],
"staticDirs": {
"static": "./static"
},
"less": [
"static/style.less"
],
"templates": "static/templates"
}