feat: storage module refactor + UI fixes
This commit is contained in:
13
server/modules/storage/scp/definition.yml
Normal file
13
server/modules/storage/scp/definition.yml
Normal file
@@ -0,0 +1,13 @@
|
||||
key: scp
|
||||
title: SCP (SSH)
|
||||
author: requarks.io
|
||||
props:
|
||||
host: String
|
||||
port:
|
||||
type: Number
|
||||
default: 22
|
||||
username: String
|
||||
privateKeyPath: String
|
||||
basePath:
|
||||
type: String
|
||||
default: '~'
|
23
server/modules/storage/scp/storage.js
Normal file
23
server/modules/storage/scp/storage.js
Normal file
@@ -0,0 +1,23 @@
|
||||
module.exports = {
|
||||
async activated(opts) {
|
||||
|
||||
},
|
||||
async deactivated(opts) {
|
||||
|
||||
},
|
||||
async init(opts) {
|
||||
|
||||
},
|
||||
async created(opts) {
|
||||
|
||||
},
|
||||
async updated(opts) {
|
||||
|
||||
},
|
||||
async deleted(opts) {
|
||||
|
||||
},
|
||||
async renamed(opts) {
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user