forked from dealbee/nodebb-plugin-user-level
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathplugin.json
More file actions
24 lines (24 loc) · 719 Bytes
/
plugin.json
File metadata and controls
24 lines (24 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"id": "nodebb-plugin-user-level",
"url": "https://github.com/NodeBB/nodebb-plugin-user-level",
"library": "./library.js",
"languages": "languages",
"defaultLang": "en-GB",
"hooks": [
{ "hook": "static:app.load", "method": "init" },
{ "hook": "filter:admin.header.build", "method": "addAdminNavigation" },
{ "hook": "filter:account/profile.build", "method": "filterAccountProfileBuild" },
{ "hook": "filter:posts.getUserInfoForPosts", "method": "filterPostsGetUserInfoForPosts"}
],
"scss": [
"static/style.scss"
],
"scripts": [
"static/lib/topic.js",
"static/lib/user-account.js"
],
"modules": {
"../admin/plugins/user-level.js": "static/lib/admin.js"
},
"templates": "static/templates"
}