forked from BBleae/nodebb-plugin-sso-multi-nodebb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
40 lines (40 loc) · 732 Bytes
/
plugin.json
File metadata and controls
40 lines (40 loc) · 732 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
34
35
36
37
38
39
40
{
"id": "nodebb-plugin-sso-multi-nodebb",
"url": "https://github.com/Magictea-Intl/nodebb-plugin-sso-multi-nodebb",
"library": "./library.js",
"hooks": [
{
"hook": "filter:router.page",
"method": "addMiddleware"
},
{
"hook": "static:app.load",
"method": "init"
},
{
"hook": "filter:admin.header.build",
"method": "addAdminNavigation"
},
{
"hook": "static:user.loggedOut",
"method": "cleanup"
},
{
"hook": "filter:config.get",
"method": "appendConfig"
}
],
"less": [
"static/style.less"
],
"scripts": [
"static/lib/main.js"
],
"acpScripts": [
"static/lib/admin.js"
],
"upgrades": [
"upgrades/session_sharing_hash_to_zset.js"
],
"templates": "static/templates"
}