nodebb-plugin-chats-global/plugin.json

25 lines
626 B
JSON
Raw Permalink Normal View History

2014-06-04 20:08:24 +00:00
{
2017-10-12 18:52:20 +00:00
"id": "nodebb-plugin-chats-global",
"url": "https://github.com/adlerosn/nodebb-plugin-chats-global",
2014-06-04 20:08:24 +00:00
"library": "./library.js",
"hooks": [
2017-10-12 18:52:20 +00:00
{ "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" }
2014-06-04 20:08:24 +00:00
],
"staticDirs": {
"static": "./static"
},
"less": [
"static/style.less"
],
"scripts": [
2016-01-19 20:02:30 +00:00
"static/lib/main.js"
],
"acpScripts": [
"static/lib/admin.js"
2014-08-05 16:22:10 +00:00
],
"templates": "static/templates"
2017-10-12 18:52:20 +00:00
}