()
| 1166 | * 3. false (Remote Control must be explicitly opted into) |
| 1167 | */ |
| 1168 | export function getRemoteControlAtStartup(): boolean { |
| 1169 | const explicit = getGlobalConfig().remoteControlAtStartup |
| 1170 | if (explicit !== undefined) return explicit |
| 1171 | if (feature('CCR_AUTO_CONNECT')) { |
| 1172 | if (ccrAutoConnect?.getCcrAutoConnectDefault()) return true |
| 1173 | } |
| 1174 | return false |
| 1175 | } |
| 1176 | |
| 1177 | export function getCustomApiKeyStatus( |
| 1178 | truncatedApiKey: string, |
no test coverage detected