digitalocean.js 363 B

12345678910111213141516171819202122232425262728293031
  1. module.exports = {
  2. key: 'digitalocean',
  3. title: 'DigialOcean Spaces',
  4. props: {
  5. accessKeyId: String,
  6. accessSecret: String,
  7. region: {
  8. type: String,
  9. default: 'nyc3'
  10. },
  11. bucket: String
  12. },
  13. activate() {
  14. },
  15. deactivate() {
  16. },
  17. created(opts) {
  18. },
  19. updated(opts) {
  20. },
  21. deleted(opts) {
  22. },
  23. renamed(opts) {
  24. }
  25. }