perf: 账号备份增加sftp方式 (#12032)

* perf: 添加sftp支持

* perf: 账号备份增加sftp方式

---------

Co-authored-by: wangruidong <940853815@qq.com>
Co-authored-by: Bryan <jiangjie.bai@fit2cloud.com>
This commit is contained in:
fit2bot
2023-11-07 15:10:46 +08:00
committed by GitHub
parent 54b89f6fee
commit f01bfc44b8
15 changed files with 601 additions and 289 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 4.1.10 on 2023-11-02 10:07
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('terminal', '0066_applethost_using_same_account'),
]
operations = [
migrations.AlterField(
model_name='replaystorage',
name='type',
field=models.CharField(choices=[('null', 'Null'), ('server', 'Server'), ('s3', 'S3'), ('ceph', 'Ceph'), ('swift', 'Swift'), ('oss', 'OSS'), ('azure', 'Azure'), ('obs', 'OBS'), ('cos', 'COS'), ('sftp', 'SFTP')], default='server', max_length=16, verbose_name='Type'),
),
]