-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathplugin.json
44 lines (44 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
{
"library": "build/lib",
"scss": [
"public/style.scss"
],
"acpScss": [
"acp/admin.scss"
],
"modules": {
"emoji.js": "build/public/lib/emoji.js",
"emoji-dialog.js": "build/public/lib/emoji-dialog.js",
"leven.js": "public/lib/leven.js",
"fuzzysearch.js": "public/lib/fuzzysearch.js",
"../admin/plugins/emoji.js": "build/acp/admin.js"
},
"staticDirs": {
"emoji": "build/emoji"
},
"scripts": [
"public/emoji-setup.js"
],
"acpScripts": [
"public/emoji-setup.js"
],
"languages": "public/language",
"defaultLang": "en-US",
"templates": "public/templates",
"hooks": [
{ "hook": "static:app.load", "method": "init" },
{ "hook": "filter:admin.header.build", "method": "adminMenu" },
{ "hook": "filter:composer.formatting", "method": "composerFormatting", "priority": 19 },
{ "hook": "filter:parse.raw", "method": "parse.raw", "priority": 9 },
{ "hook": "filter:parse.post", "method": "parse.post", "priority": 9 },
{ "hook": "filter:topic.get", "method": "parse.topic" },
{ "hook": "filter:topics.get", "method": "parse.topics" },
{ "hook": "filter:post.getPostSummaryByPids", "method": "parse.postSummaries" },
{ "hook": "filter:user.notifications.getNotifications", "method": "parse.notifications" },
{ "hook": "filter:email.prepare", "method": "parse.email" },
{ "hook": "filter:middleware.renderHeader", "method": "parse.header" },
{ "hook": "filter:meta.getLinkTags", "method": "addStylesheet" },
{ "hook": "filter:config.get", "method": "configGet" },
{ "hook": "filter:messaging.loadRoom", "method": "filterMessagingLoadRoom" }
]
}