forked from earthsenze/nodebb-plugin-s3-uploads
-
Notifications
You must be signed in to change notification settings - Fork 23
/
plugin.json
20 lines (19 loc) · 814 Bytes
/
plugin.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"id": "nodebb-plugin-s3-uploads-updated",
"name": "S3 Uploads Plugin",
"description": "A plugin for NodeBB to take file uploads and store them on S3 updated for 1.0",
"url": "https://github.com/LewisMcMahon/nodebb-plugin-s3-uploads",
"library": "./index.js",
"staticDirs": {
"s3": "public"
},
"hooks": [
{ "hook": "static:app.load", "method": "load"},
{ "hook": "action:plugin.activate", "method": "activate"},
{ "hook": "action:plugin.deactivate", "method": "deactivate"},
{ "hook": "filter:admin.header.build", "method": "admin.menu"},
{ "hook": "filter:uploadImage", "method": "uploadImage", "priority": 6 },
{ "hook": "filter:uploadFile", "method": "uploadFile", "priority": 6 }
],
"templates": "./templates"
}