forked from psychobunny/nodebb-plugin-blog-comments
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathplugin.json
More file actions
27 lines (27 loc) · 664 Bytes
/
plugin.json
File metadata and controls
27 lines (27 loc) · 664 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-comments2",
"name": "NodeBB Blog Comments2",
"description": "Lets NodeBB act as a comments engine/widget for your blog.",
"url": "https://github.com/revir/nodebb-plugin-blog-comments2",
"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"
}