Files
wikijs-fork/server/modules/storage/s3.js
2018-07-07 18:09:58 -04:00

32 lines
332 B
JavaScript

module.exports = {
key: 's3',
title: 'Amazon S3',
props: {
accessKeyId: String,
accessSecret: String,
region: String,
bucket: String
},
activated(opts) {
},
deactivated(opts) {
},
init(opts) {
},
created(opts) {
},
updated(opts) {
},
deleted(opts) {
},
renamed(opts) {
}
}