nodebb-plugin-chats-global/plugin.json

25 lines
626 B
JSON

{
"id": "nodebb-plugin-chats-global",
"url": "https://github.com/adlerosn/nodebb-plugin-chats-global",
"library": "./library.js",
"hooks": [
{ "hook": "static:app.load", "method": "init" },
{ "hook": "filter:admin.header.build", "method": "addAdminNavigation" },
{ "hook": "filter:messaging.getRecentChats", "method": "getRecentChats" },
{ "hook": "action:user.create", "method": "createdUser" }
],
"staticDirs": {
"static": "./static"
},
"less": [
"static/style.less"
],
"scripts": [
"static/lib/main.js"
],
"acpScripts": [
"static/lib/admin.js"
],
"templates": "static/templates"
}