-
Notifications
You must be signed in to change notification settings - Fork 12
/
plugin.json
31 lines (28 loc) · 1.16 KB
/
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
30
31
{
"id": "nodebb-plugin-solr",
"name": "Solr Search",
"description": "Full-text searching for NodeBB using Apache Solr",
"url": "https://github.com/julianlam/nodebb-plugin-solr",
"library": "./library.js",
"hooks": [
{ "hook": "static:app.load", "method": "init", "priority": 5 },
{ "hook": "filter:admin.header.build", "method": "adminMenu" },
{ "hook": "filter:admin.notices", "method": "getNotices"},
{ "hook": "action:post.save", "method": "post.save"},
{ "hook": "action:post.delete", "method": "post.delete"},
{ "hook": "action:post.restore", "method": "post.restore"},
{ "hook": "action:post.edit", "method": "post.edit"},
{ "hook": "action:post.move", "method": "post.move"},
{ "hook": "action:topic.post", "method": "topic.post"},
{ "hook": "action:topic.delete", "method": "topic.delete"},
{ "hook": "action:topic.restore", "method": "topic.restore"},
{ "hook": "action:topic.edit", "method": "topic.edit"},
{ "hook": "action:topic.move", "method": "topic.move"},
{ "hook": "filter:search.query", "method": "search"},
{ "hook": "filter:topic.search", "method": "searchTopic"}
],
"less": [
"static/style.less"
],
"templates": "templates"
}