(path: string, token: string)
| 58 | * @returns Secure URL with token parameter |
| 59 | */ |
| 60 | export function getSecureTokenLink(path: string, token: string): string { |
| 61 | const baseUrl = getSecureAppUrl(path) |
| 62 | return `${baseUrl}?token=${encodeURIComponent(token)}` |
| 63 | } |
no test coverage detected