forked from julianlam/nodebb-plugin-sso-yandex
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplugin.json
More file actions
24 lines (24 loc) · 769 Bytes
/
plugin.json
File metadata and controls
24 lines (24 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"id": "nodebb-plugin-sso-yandex2",
"name": "NodeBB Yandex SSO",
"description": "NodeBB Plugin that allows users to login/register via their Yandex account.",
"url": "https://github.com/mysteren/nodebb-plugin-sso-yandex",
"templates": "static/templates",
"languages": "languages",
"staticDirs": {
"static": "./static"
},
"scss": [
"static/scss/style.scss"
],
"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" }
],
"modules": {
"../admin/plugins/sso-yandex.js": "static/lib/admin.js"
}
}