Files
galaxy/app/src/settings/ssh.rs
T
Ryan Ward 2f64909469 Update AI agent, settings, and terminal modules
- 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
2026-07-01 14:30:04 -05:00

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.",
},
]
);