nodebb-plugin-sso-oauth/plugin.json

16 lines
568 B
JSON
Raw Normal View History

2014-01-29 16:42:06 +00:00
{
"id": "nodebb-plugin-sso-oauth",
"name": "NodeBB OAuth SSO",
"description": "NodeBB Plugin that allows users to login/register via any configured OAuth provider.",
"url": "https://github.com/julianlam/nodebb-plugin-sso-oauth",
"library": "./library.js",
"hooks": [
2014-07-28 16:57:26 +00:00
{ "hook": "static:app.load", "method": "init" },
{ "hook": "filter:user.delete", "method": "deleteUserData" },
2014-03-19 00:04:18 +00:00
{ "hook": "filter:auth.init", "method": "getStrategy" },
{ "hook": "filter:admin.header.build", "method": "addMenuItem" }
],
"templates": "./templates",
2014-07-22 14:03:52 +00:00
"minver": "0.5.0"
}