39 lines
429 B
JavaScript
39 lines
429 B
JavaScript
module.exports = {
|
|
key: 'scp',
|
|
title: 'SCP (SSH)',
|
|
props: {
|
|
host: String,
|
|
port: {
|
|
type: Number,
|
|
default: 22
|
|
},
|
|
username: String,
|
|
privateKeyPath: String,
|
|
basePath: {
|
|
type: String,
|
|
default: '~'
|
|
}
|
|
},
|
|
activated(opts) {
|
|
|
|
},
|
|
deactivated(opts) {
|
|
|
|
},
|
|
init(opts) {
|
|
|
|
},
|
|
created(opts) {
|
|
|
|
},
|
|
updated(opts) {
|
|
|
|
},
|
|
deleted(opts) {
|
|
|
|
},
|
|
renamed(opts) {
|
|
|
|
}
|
|
}
|