-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.json
22 lines (22 loc) · 941 Bytes
/
plugin.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"id": "nodebb-plugin-membership",
"name": "Membership",
"description": "Membership functionalities and account synchronization with external site/app",
"url": "https://github.com/arkabase/nodebb-plugin-membership",
"library": "lib/library.js",
"staticDirs": {
"images": "public/images"
},
"scss": ["assets/style.scss"],
"hooks": [
{ "hook": "static:app.load", "method": "init" },
{ "hook": "filter:admin.header.build", "method": "addAdminNav" },
{ "hook": "filter:navigation.available", "method": "getNavigation" },
{ "hook": "filter:user.whitelistFields", "method": "whitelistFields" },
{ "hook": "filter:user.updateProfile", "method": "addLocationDetails" },
{ "hook": "static:api.routes", "method": "initApiRoutes" }
],
"scripts": ["public/client.js"],
"languages": "languages",
"templates": "templates"
}