- Update AI agent conversation, task, and prompt builder - Add notebooks execution module for blocklist actions - Update Bedrock and OpenAI response translators - Refactor settings modules across multiple subsystems - Update terminal settings and window settings - Update drive settings and search command settings
17 lines
588 B
Rust
17 lines
588 B
Rust
use settings::{macros::define_settings_group, SupportedPlatforms, SyncToCloud};
|
|
|
|
define_settings_group!(SshSettings,
|
|
settings: [
|
|
enable_legacy_ssh_wrapper: EnableSshWrapper {
|
|
type: bool,
|
|
default: true,
|
|
supported_platforms: SupportedPlatforms::ALL,
|
|
sync_to_cloud: SyncToCloud::Never,
|
|
private: false,
|
|
storage_key: "EnableSSHWrapper",
|
|
toml_path: "warpify.ssh.enable_legacy_ssh_wrapper",
|
|
description: "Whether the legacy SSH wrapper is enabled for SSH sessions.",
|
|
},
|
|
]
|
|
);
|