forked from barisusakli/nodebb-plugin-dbsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.json
43 lines (39 loc) · 2.18 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
32
33
34
35
36
37
38
39
40
41
42
43
{
"id": "nodebb-plugin-dbsearch-korean",
"name": "DB Search Korean",
"description": "사용자가 한글로 게시물과 토픽을 검색할 수 있게 만들어 주는 플러그인",
"url": "https://github.com/navystack/nodebb-plugin-dbsearch-korean",
"library": "./index.js",
"upgrades": [
"upgrades/dbsearch_change_mongodb_schema.js"
],
"hooks": [
{ "hook": "static:app.load", "method": "init" },
{ "hook": "filter:admin.header.build", "method": "admin.menu" },
{ "hook": "action:post.save", "method": "actionPostSave" },
{ "hook": "action:post.restore", "method": "actionPostRestore" },
{ "hook": "action:post.edit", "method": "actionPostEdit" },
{ "hook": "action:post.delete", "method": "actionPostDelete" },
{ "hook": "action:posts.purge", "method": "actionPostsPurge" },
{ "hook": "action:post.move", "method": "actionPostMove" },
{ "hook": "action:post.changeOwner", "method": "actionPostChangeOwner" },
{ "hook": "action:topic.save", "method": "actionTopicSave" },
{ "hook": "action:topic.restore", "method": "actionTopicRestore" },
{ "hook": "action:topic.edit", "method": "actionTopicEdit" },
{ "hook": "action:topic.delete", "method": "actionTopicDelete" },
{ "hook": "action:topic.purge", "method": "actionTopicPurge" },
{ "hook": "action:topic.move", "method": "actionTopicMove" },
{ "hook": "action:topic.changeOwner", "method": "actionTopicChangeOwner" },
{ "hook": "action:messaging.save", "method": "actionMessagingSave" },
{ "hook": "action:messaging.delete", "method": "actionMessagingDelete" },
{ "hook": "action:messaging.restore", "method": "actionMessagingRestore" },
{ "hook": "action:messaging.edit", "method": "actionMessagingEdit" },
{ "hook": "filter:search.query", "method": "filterSearchQuery" },
{ "hook": "filter:topic.search", "method": "filterSearchTopic" },
{ "hook": "filter:messaging.searchMessages", "method": "filterMessagingSearchMessages" }
],
"modules": {
"../admin/plugins/dbsearch.js": "public/admin.js"
},
"templates": "./templates"
}