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

27 lines
774 B
JSON
Raw Permalink Normal View History

2014-06-04 20:08:24 +00:00
{
2017-10-12 06:17:53 +00:00
"id": "nodebb-plugin-groups-autoassigncategory",
"url": "https://github.com/adlerosn/nodebb-plugin-groups-autoassigncategory",
2014-06-04 20:08:24 +00:00
"library": "./library.js",
"hooks": [
2017-10-12 06:17:53 +00:00
{ "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" }
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 06:17:53 +00:00
}