-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathplugin.json
More file actions
36 lines (36 loc) · 792 Bytes
/
plugin.json
File metadata and controls
36 lines (36 loc) · 792 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
26
27
28
29
30
31
32
33
34
35
36
{
"id": "nodebb-theme-slick",
"library": "./lib/theme.js",
"hooks": [
{
"hook": "static:app.load", "method": "init"
},
{
"hook": "filter:admin.header.build", "method": "addAdminNavigation"
},
{
"hook": "filter:config.get", "method": "getThemeConfig"
},
{
"hook": "filter:topic.build", "method": "addUserToTopic"
},
{
"hook": "filter:user.customSettings", "method": "customSettings"
},
{
"hook": "action:user.saveSettings", "method": "saveSettings"
},
{
"hook": "filter:meta.getLinkTags", "method": "getLinkTags"
}
],
"scripts": [
"public/slick.js"
],
"modules": {
"../admin/plugins/slick.js": "public/admin.js",
"slick/quickreply.js": "public/quickreply.js",
"slick/chats.js": "public/chats.js"
},
"templates": "./templates"
}