generated from oplik0/nodebb-plugin-quickstart
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.json
91 lines (91 loc) · 1.62 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"id": "nodebb-plugin-meilisearch",
"url": "https://github.com/oplik0/nodebb-plugin-meilisearch",
"library": "./library.js",
"hooks": [
{
"hook": "static:app.load",
"method": "init"
},
{
"hook": "static:api.routes",
"method": "addRoutes"
},
{
"hook": "filter:admin.header.build",
"method": "addAdminNavigation"
},
{
"hook": "filter:admin.notices",
"method": "getNotices"
},
{
"hook": "action:post.save",
"method": "indexPost"
},
{
"hook": "action:post.edit",
"method": "indexPost"
},
{
"hook": "action:post.move",
"method": "indexPost"
},
{
"hook": "action:post.restore",
"method": "indexPost"
},
{
"hook": "action:post.delete",
"method": "deindexPost"
},
{
"hook": "action:topic.post",
"method": "indexTopic"
},
{
"hook": "action:topic.restore",
"method": "indexTopic"
},
{
"hook": "action:topic.edit",
"method": "indexTopic"
},
{
"hook": "action:topic.move",
"method": "indexTopic"
},
{
"hook": "action:topic.delete",
"method": "deindexTopic"
},
{
"hook": "filter:search.query",
"method": "search"
},
{
"hook": "filter:topic.search",
"method": "search"
},
{
"hook": "filter:settings.set",
"method": "saveSettings"
}
],
"staticDirs": {
"static": "./static"
},
"scss": [
"static/scss/meilisearch.scss"
],
"less": [
"static/less/meilisearch.less"
],
"modules": {
"../admin/plugins/meilisearch.js": "./static/lib/admin.js"
},
"templates": "static/templates",
"settingsRoute": "/admin/plugins/meilisearch",
"languages": "static/languages",
"defaultLang": "en-GB"
}