12345678910111213141516171819202122232425262728 |
- module.exports = {
- key: 's3',
- title: 'Amazon S3',
- props: {
- accessKeyId: String,
- accessSecret: String,
- region: String,
- bucket: String
- },
- activate() {
- },
- deactivate() {
- },
- created(opts) {
- },
- updated(opts) {
- },
- deleted(opts) {
- },
- renamed(opts) {
- }
- }
|