()
| 1112 | * 3. false (Remote Control must be explicitly opted into) |
| 1113 | */ |
| 1114 | export function getRemoteControlAtStartup(): boolean { |
| 1115 | const explicit = getGlobalConfig().remoteControlAtStartup |
| 1116 | if (explicit !== undefined) return explicit |
| 1117 | if (feature('CCR_AUTO_CONNECT')) { |
| 1118 | if (ccrAutoConnect?.getCcrAutoConnectDefault()) return true |
| 1119 | } |
| 1120 | return false |
| 1121 | } |
| 1122 | |
| 1123 | export function getCustomApiKeyStatus( |
| 1124 | truncatedApiKey: string, |
no test coverage detected