nodebb-plugin-groups-autoas.../plugin.json

27 lines
774 B
JSON

{
"id": "nodebb-plugin-groups-autoassigncategory",
"url": "https://github.com/adlerosn/nodebb-plugin-groups-autoassigncategory",
"library": "./library.js",
"hooks": [
{ "hook": "static:app.load", "method": "init" },
{ "hook": "filter:admin.header.build", "method": "addAdminNavigation" },
{ "hook": "action:group.create", "method": "createGroup" },
{ "hook": "action:group.destroy", "method": "destroyGroup" },
{ "hook": "action:group.update", "method": "editGroup" },
{ "hook": "action:group.rename", "method": "renameGroup" }
],
"staticDirs": {
"static": "./static"
},
"less": [
"static/style.less"
],
"scripts": [
"static/lib/main.js"
],
"acpScripts": [
"static/lib/admin.js"
],
"templates": "static/templates"
}