30 lines
296 B
JavaScript
30 lines
296 B
JavaScript
module.exports = {
|
|
key: 'gdrive',
|
|
title: 'Google Drive',
|
|
props: {
|
|
clientId: String,
|
|
clientSecret: String
|
|
},
|
|
activated(opts) {
|
|
|
|
},
|
|
deactivated(opts) {
|
|
|
|
},
|
|
init(opts) {
|
|
|
|
},
|
|
created(opts) {
|
|
|
|
},
|
|
updated(opts) {
|
|
|
|
},
|
|
deleted(opts) {
|
|
|
|
},
|
|
renamed(opts) {
|
|
|
|
}
|
|
}
|