forked from psychobunny/nodebb-plugin-blog-comments
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
27 lines (27 loc) · 676 Bytes
/
plugin.json
File metadata and controls
27 lines (27 loc) · 676 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
{
"id": "nodebb-plugin-blog-comments",
"name": "NodeBB Blog Comments",
"description": "Lets NodeBB act as a comments engine/widget for your blog.",
"url": "https://github.com/psychobunny/nodebb-plugin-blog-comments",
"library": "./library.js",
"hooks": [
{
"hook": "filter:admin.header.build", "method": "addAdminLink"
},
{
"hook": "filter:posts.custom_profile_info", "method": "addLinkbackToArticle"
},
{
"hook": "static:app.load", "method": "init"
}
],
"scripts": [
"public/lib/main.js"
],
"staticDirs": {
"templates": "./public/templates",
"css": "./public/css",
"lib": "./public/lib"
},
"templates": "./public/templates"
}