UNPKG

nodebb-plugin-global-chat

Version:
27 lines 875 B
{ "id": "nodebb-plugin-global-chat", "name": "Global Chat", "description": "Adds a global chat room to NodeBB", "url": "https://github.com/NodeBB/nodebb-plugin-global-chat", "library": "index.js", "hooks": [ { "hook": "static:app.load", "method": "init" }, { "hook": "action:user.create", "method": "addUser" }, { "hook": "filter:messaging.loadRoom", "method": "roomLoad" }, { "hook": "filter:messaging.isRoomOwner", "method": "isRoomOwner" }, { "hook": "filter:messaging.addUsersToRoom", "method": "roomAddUsers" }, { "hook": "filter:messaging.notify", "method": "shouldNotify" }, { "hook": "filter:admin.header.build", "method": "adminMenu" } ], "templates": "templates", "languages": "languages", "less": [ "public/fixes.less" ], "scripts": [ "public/client.js" ], "acpScripts": [ "public/admin.js" ] }