nodebb-plugin-write-api/plugin.json
2022-07-20 16:08:19 -04:00

21 lines
No EOL
724 B
JSON

{
"id": "nodebb-plugin-write-api",
"name": "NodeBB Write-Enabled API",
"description": "A RESTful JSON-speaking API allowing you to write things to NodeBB",
"url": "https://github.com/julianlam/nodebb-plugin-write-api",
"library": "./index.js",
"templates": "templates",
"hooks": [
{ "hook": "static:app.load", "method": "init" },
{ "hook": "filter:admin.header.build", "method": "addMenuItem" },
{ "hook": "response:middleware.authenticate", "method": "authenticate"},
{ "hook": "filter:router.page", "method": "associateUser" },
{ "hook": "action:settings.set", "method": "reloadSettings" }
],
"less": [
"./less/style.less"
],
"modules": {
"../admin/plugins/write-api.js": "public/js/admin.js"
}
}