forked from purewave1989/nodebb-plugin-sso-github
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathplugin.json
19 lines (19 loc) · 761 Bytes
/
plugin.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"id": "nodebb-plugin-sso-github",
"name": "NodeBB GitHub SSO",
"description": "NodeBB Plugin that allows users to login/register via their GitHub account.",
"url": "https://github.com/julianlam/nodebb-plugin-sso-github",
"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",
"modules": {
"../admin/plugins/sso-github.js": "static/lib/admin.js"
}
}