mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-03-22 06:41:51 +00:00
This PR introduces "General" settings for the GUI client. The "Settings" menu item in the GUI is split into two sub-sections. The menu item is collapsible but open by default. |General|Advanced| |---|---| ||| "Connect on start" and "Account slug" can both be MDM managed. The autostart functionality is implemented via the Windows Registry. --------- Co-authored-by: Jamil Bou Kheir <jamilbk@users.noreply.github.com>
9 lines
230 B
TypeScript
9 lines
230 B
TypeScript
export interface GeneralSettingsViewModel {
|
|
start_minimized: boolean;
|
|
start_on_login: boolean;
|
|
connect_on_start: boolean;
|
|
connect_on_start_is_managed: boolean;
|
|
account_slug: string;
|
|
account_slug_is_managed: boolean;
|
|
}
|