mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-09-14 11:06:15 +05:00
feat: expose Google Drive OneDrive FTP and SFTP destinations
This commit is contained in:
parent
7d2b8065e9
commit
88b43d77f0
@ -1,3 +1,5 @@
|
||||
import { RCLONE_DESTINATION_PROVIDERS } from "@dokploy/server/db/validations/destination";
|
||||
|
||||
export const S3_PROVIDERS: Array<{
|
||||
key: string;
|
||||
name: string;
|
||||
@ -131,3 +133,30 @@ export const S3_PROVIDERS: Array<{
|
||||
name: "Any other S3 compatible provider",
|
||||
},
|
||||
];
|
||||
|
||||
export const DESTINATION_PROVIDERS: Array<{
|
||||
key: string;
|
||||
name: string;
|
||||
}> = [
|
||||
{
|
||||
key: RCLONE_DESTINATION_PROVIDERS.GOOGLE_DRIVE,
|
||||
name: "Google Drive (configured rclone remote)",
|
||||
},
|
||||
{
|
||||
key: RCLONE_DESTINATION_PROVIDERS.ONEDRIVE,
|
||||
name: "Microsoft OneDrive (configured rclone remote)",
|
||||
},
|
||||
{
|
||||
key: RCLONE_DESTINATION_PROVIDERS.SFTP,
|
||||
name: "SFTP",
|
||||
},
|
||||
{
|
||||
key: RCLONE_DESTINATION_PROVIDERS.FTP,
|
||||
name: "FTP",
|
||||
},
|
||||
{
|
||||
key: RCLONE_DESTINATION_PROVIDERS.REMOTE,
|
||||
name: "Other configured rclone remote",
|
||||
},
|
||||
...S3_PROVIDERS,
|
||||
];
|
||||
|
||||
Loading…
Reference in New Issue
Block a user