()
| 1092 | * 3. false (Remote Control must be explicitly opted into) |
| 1093 | */ |
| 1094 | export function getRemoteControlAtStartup(): boolean { |
| 1095 | const explicit = getGlobalConfig().remoteControlAtStartup |
| 1096 | if (explicit !== undefined) return explicit |
| 1097 | if (feature('CCR_AUTO_CONNECT')) { |
| 1098 | if (ccrAutoConnect?.getCcrAutoConnectDefault()) return true |
| 1099 | } |
| 1100 | return false |
| 1101 | } |
| 1102 | |
| 1103 | export function getCustomApiKeyStatus( |
| 1104 | truncatedApiKey: string, |
no test coverage detected