(secret: Uint8Array)
| 29 | * Generate a URL for the mobile app to connect to the server |
| 30 | */ |
| 31 | export function generateAppUrl(secret: Uint8Array): string { |
| 32 | const secretBase64Url = encodeBase64Url(secret); |
| 33 | return `consortium://${secretBase64Url}`; |
| 34 | } |
nothing calls this directly
no test coverage detected