forked from NodeBB-Community/nodebb-plugin-sso-auth0
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
19 lines (19 loc) · 713 Bytes
/
plugin.json
File metadata and controls
19 lines (19 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"id": "nodebb-plugin-sso-auth0",
"name": "NodeBB Auth0 SSO",
"description": "NodeBB Plugin that allows users to login/register via Auth0.",
"url": "https://github.com/julianlam/nodebb-plugin-sso-auth0",
"library": "./library.js",
"hooks": [
{ "hook": "static:app.load", "method": "init" },
{ "hook": "filter:auth.init", "method": "getStrategy" },
{ "hook": "filter:auth.list", "method": "getAssociation" },
{ "hook": "filter:admin.header.build", "method": "addMenuItem" },
{ "hook": "static:user.delete", "method": "deleteUserData" },
{ "hook": "filter:user.whitelistFields", "method": "appendUserHashWhitelist" }
],
"templates": "./templates",
"acpScripts": [
"static/lib/admin.js"
]
}