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