-
Notifications
You must be signed in to change notification settings - Fork 19
/
plugin.json
20 lines (20 loc) · 849 Bytes
/
plugin.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"id": "nodebb-plugin-sso-facebook",
"name": "NodeBB Facebook SSO",
"description": "NodeBB Plugin that allows users to login/register via their Facebook account.",
"url": "https://github.com/julianlam/nodebb-plugin-sso-facebook",
"library": "./library.js",
"templates": "templates",
"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:register.interstitial", "method": "prepareInterstitial" },
{ "hook": "filter:user.whitelistFields", "method": "appendUserHashWhitelist" }
],
"modules": {
"../admin/plugins/sso-facebook.js": "static/lib/admin.js"
}
}