forked from pitaj/nodebb-plugin-calendar
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.json
More file actions
62 lines (62 loc) · 1.46 KB
/
plugin.json
File metadata and controls
62 lines (62 loc) · 1.46 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "NodeBB Calendar plugin",
"library": "library.js",
"staticDirs": {
"bundles": "build/bundles/"
},
"hooks": [
{
"hook": "static:app.load", "method": "init"
},
{
"hook": "filter:navigation.available", "method": "addNavigation"
},
{
"hook": "filter:admin.header.build", "method": "adminMenu"
},
{
"hook": "filter:parse.post", "method": "parsePost", "priority": 6
},
{
"hook": "filter:parse.raw", "method": "parseRaw", "priority": 6
},
{
"hook": "filter:post.create", "method": "postSave"
},
{
"hook": "filter:post.edit", "method": "postEdit"
},
{
"hook": "filter:privileges.list", "method": "privilegesList"
},
{
"hook": "filter:privileges.groups.list", "method": "privilegesGroupsList"
},
{
"hook": "filter:privileges.list_human", "method": "privilegesListHuman"
},
{
"hook": "filter:privileges.groups.list_human", "method": "privilegesListHuman"
},
{
"hook": "filter:composer.formatting", "method": "composerFormatting", "priority": 6
},
{
"hook": "action:post.delete", "method": "postDelete"
}
],
"templates": "public/templates",
"languages": "public/languages",
"defaultLang": "en-US",
"less": [
"public/event.less",
"public/calendar.less"
],
"scripts": [
"build/bundles/commons.js",
"build/bundles/client.js"
],
"acpScripts": [
"public/admin.js"
]
}