1234567891011121314151617181920212223242526272829303132333435 |
- module.exports = {
- key: 'scp',
- title: 'SCP (SSH)',
- props: {
- host: String,
- port: {
- type: Number,
- default: 22
- },
- username: String,
- privateKeyPath: String,
- basePath: {
- type: String,
- default: '~'
- }
- },
- activate() {
- },
- deactivate() {
- },
- created(opts) {
- },
- updated(opts) {
- },
- deleted(opts) {
- },
- renamed(opts) {
- }
- }
|