()
| 2267 | |
| 2268 | // Databases are local-vault only for now (no remote-server endpoints yet). |
| 2269 | const ensureLocalForDatabases = (): void => { |
| 2270 | if (isRemoteWorkspaceActive()) { |
| 2271 | throw new Error('Databases are not yet supported on remote vaults') |
| 2272 | } |
| 2273 | } |
| 2274 | |
| 2275 | handle(IPC.VAULT_OPEN_DATABASE, async (_e, relPath: string) => { |
| 2276 | ensureLocalForDatabases() |
no test coverage detected