35 lines
394 B
JavaScript
35 lines
394 B
JavaScript
module.exports = {
|
|
key: 'digitalocean',
|
|
title: 'DigialOcean Spaces',
|
|
props: {
|
|
accessKeyId: String,
|
|
accessSecret: String,
|
|
region: {
|
|
type: String,
|
|
default: 'nyc3'
|
|
},
|
|
bucket: String
|
|
},
|
|
activated(opts) {
|
|
|
|
},
|
|
deactivated(opts) {
|
|
|
|
},
|
|
init(opts) {
|
|
|
|
},
|
|
created(opts) {
|
|
|
|
},
|
|
updated(opts) {
|
|
|
|
},
|
|
deleted(opts) {
|
|
|
|
},
|
|
renamed(opts) {
|
|
|
|
}
|
|
}
|