nodebb-plugin-sso-saml/plugin.json

16 lines
582 B
JSON
Raw Normal View History

2014-09-22 19:38:45 +02:00
{
"id": "nodebb-plugin-sso-saml",
"name": "NodeBB SAML SSO",
"description": "NodeBB Plugin that allows users to login/register via SAML.",
2020-04-29 15:00:23 +02:00
"url": "https://code.evin.team/evin/nodebb-plugin-sso-saml.git",
2014-09-22 19:38:45 +02:00
"library": "./library.js",
"hooks": [
{ "hook": "filter:auth.init", "method": "getStrategy" },
{ "hook": "filter:admin.header.build", "method": "addMenuItem" },
{ "hook": "static:app.load", "method": "init" },
2020-04-29 15:00:23 +02:00
{ "hook": "filter:config.get", "method": "get_config" },
2014-09-22 19:38:45 +02:00
{ "hook": "filter:user.delete", "method": "deleteUserData" }
],
"templates": "./templates"
2020-04-29 15:00:23 +02:00
}