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