nodebb-plugin-ns-awards
Version:
System for rewarding forum users. It allows admin to define set of awards that could be granted to users for special accomplishments.
56 lines • 1.45 kB
JSON
{
"id": "nodebb-plugin-ns-awards",
"name": "NodeBB Awards",
"description": "A system for rewarding forum users. The plugin allows admin to define set of awards that could be granted to users for special accomplishments.",
"url": "https://github.com/NicolasSiver/nodebb-plugin-ns-awards",
"library": "./plugin/index.js",
"hooks": [
{
"hook": "filter:admin.header.build",
"method": "hooks.filters.menuAdmin"
},
{
"hook": "filter:navigation.available",
"method": "hooks.filters.navigation"
},
{
"hook": "filter:account/profile.build",
"method": "hooks.filters.account"
},
{
"hook": "filter:post.getPosts",
"method": "hooks.filters.getPosts"
},
{
"hook": "static:user.delete",
"method": "hooks.statics.userDelete"
},
{
"hook": "static:app.load",
"method": "hooks.statics.load"
},
{
"hook": "static:ns.awards.rewardUser",
"method": "hooks.api.rewardUser"
},
{
"hook": "filter:ns.awards.getAwards",
"method": "hooks.api.getAwards"
}
],
"css": [
"public/css/overview.css",
"public/css/profile.css",
"public/css/topic.css"
],
"modules": {
"../admin/plugins/awards.js": "./public/js/acp.js"
},
"scripts": [],
"staticDirs": {
"templates": "./public/templates",
"css": "./public/css",
"js": "./public/js"
},
"templates": "./public/templates"
}