6989a98d75
- Arkitektur: docs/auth/passwordless-architecture.md - Backend: iom/quixzoom-auth-service/ (FastAPI + Redis) - Webb: quixzoom-market-pages/se/login/ (QR-kod + polling) - App: iom/quixzoom-app/src/features/auth/ (push + deep links) Flöde: QR-kod → app-godkännande → webb-inloggad
13 lines
351 B
JavaScript
13 lines
351 B
JavaScript
/**
|
|
* @license
|
|
* Copyright 2026 Google Inc.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
/**
|
|
* Utility function to build a standard archive filename.
|
|
* @public
|
|
*/
|
|
export function buildArchiveFilename(browser, platform, buildId, extension = 'zip') {
|
|
return `${browser}-${platform}-${buildId}.${extension}`;
|
|
}
|
|
//# sourceMappingURL=provider.js.map
|