forked from pitaj/nodebb-plugin-calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.json
29 lines (29 loc) · 786 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
{
"id": "nodebb-plugin-calendar",
"name": "NodeBB Calendar plugin",
"description": "This plugin adds a site-wide calendar and event system.",
"url": "https://github.com/pitaj/nodebb-plugin-calendar",
"library": "library.js",
"staticDirs": {
"public": "public"
},
"hooks": [
{
"hook": "static:app.load", "method": "init"
},
{
"hook": "filter:header.build", "method": "addNavigation"
},
{
"hook": "filter:admin.header.build", "method": "addAdminNavigation"
},
{
"hook": "filter:post.raw", "method": "postParse"
},
{
"hook": "filter:topic.get", "method": "topicFilter"
}
],
"templates": "public/templates",
"languages": "public/translations"
}