forked from barisusakli/nodebb-plugin-rss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.json
23 lines (20 loc) · 850 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
{
"id": "nodebb-plugin-rss",
"name": "RSS Feed",
"description": "A RSS parser for NodeBB",
"url": "https://github.com/barisusakli/nodebb-plugin-rss",
"library": "./index.js",
"hooks": [
{ "hook": "static:app.load", "method": "init" },
{ "hook": "filter:admin.header.build", "method": "admin.menu" },
{ "hook": "action:plugin.deactivate", "method": "admin.deactivate" },
{ "hook": "action:plugin.uninstall", "method": "admin.uninstall"},
{ "hook": "action:topic.purge", "method": "onTopicPurge"},
{ "hook": "filter:widgets.getWidgets", "method": "widgets.defineWidgets" },
{ "hook": "filter:widget.render:rss", "method": "widgets.renderRssWidget" }
],
"templates": "./templates",
"modules": {
"../admin/plugins/rss.js": "./public/admin.js"
}
}