mirror of
https://hk.gh-proxy.com/https://github.com/NodeBB/nodebb-plugin-write-api.git
synced 2025-10-03 04:21:06 +08:00
21 lines
No EOL
724 B
JSON
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"
|
|
}
|
|
} |