-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
26 lines (26 loc) · 1 KB
/
plugin.json
File metadata and controls
26 lines (26 loc) · 1 KB
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
{
"id": "nodebb-theme-homebox",
"hooks": [
{ "hook": "static:app.load", "method": "init" },
{ "hook": "filter:admin.header.build", "method": "addAdminNavigation" },
{ "hook": "filter:widgets.getAreas", "method": "defineWidgetAreas" },
{ "hook": "filter:config.get", "method": "getThemeConfig" },
{ "hook": "filter:settings.get", "method": "getAdminSettings"},
{ "hook": "filter:user.saveSettings", "method": "saveUserSettings" },
{ "hook": "filter:user.profileMenu", "method": "addProfileItem" },
{ "hook": "filter:middleware.renderHeader", "method": "filterMiddlewareRenderHeader" }
],
"scripts": [
"public/homebox.js"
],
"modules": {
"../admin/plugins/homebox.js": "public/admin.js",
"../client/account/theme.js": "public/settings.js"
},
"staticDirs": {
"hyperlegible-next": "node_modules/@fontsource-variable/atkinson-hyperlegible-next/files",
"hyperlegible-mono": "node_modules/@fontsource-variable/atkinson-hyperlegible-mono/files"
},
"languages": "languages",
"defaultLang": "en-GB"
}