-
Notifications
You must be signed in to change notification settings - Fork 5
/
plugin.json
44 lines (42 loc) · 1013 Bytes
/
plugin.json
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
{
"id": "nodebb-plugin-reddcoin",
"name": "Reddcoin",
"description": "Reddcoin Tipping Plugin.",
"url": "https://github.com/reddink/nodebb-plugin-reddcoin",
"library": "./library.js",
"staticDirs": {
"static": "./static",
"images": "graphics"
},
"less": [
"./styles/style.less"
],
"scripts": [
"http://live.reddcoin.com:80/socket.io/socket.io.js",
"./lib/main.js"
],
"templates": "./templates",
"hooks": [
{
"hook": "static:app.load", "method": "init"
},
{
"hook": "filter:user.customSettings", "method": "addUserSettings"
},
{
"hook": "filter:user.getSettings", "method": "getUserSettings"
},
{
"hook": "action:user.saveSettings", "method": "saveUserSettings"
},
{
"hook": "filter:user.profileLinks", "method": "addUserProfileLinks"
},
{
"hook": "filter:posts.custom_profile_info", "method": "addProfileInfo"
},
{
"hook": "filter:admin.header.build", "method": "addAdminNavigation"
}
]
}