forked from smartameer/nodebb-plugin-office-ldap
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplugin.json
More file actions
33 lines (33 loc) · 634 Bytes
/
plugin.json
File metadata and controls
33 lines (33 loc) · 634 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
25
26
27
28
29
30
31
32
33
{
"id": "nodebb-plugin-sso-office-ldap",
"name": "OpenLDAP",
"description": "An OpenLDAP plugin",
"url": "https://github.com/meredrica/nodebb-plugin-office-ldap",
"library": "./index.js",
"hooks": [
{
"hook": "static:app.load",
"method": "init"
},
{
"hook": "action:auth.overrideLogin",
"method": "override"
},
{
"hook": "filter:config.get",
"method": "getConfig"
},
{
"hook": "filter:user.whitelistFields",
"method": "whitelistFields"
},
{
"hook": "filter:admin.header.build",
"method": "adminHeader"
}
],
"templates": "templates",
"acpScripts": [
"lib/open_ldap.js"
]
}