1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-12 22:44:11 +00:00

Update route names to use fido2

This commit is contained in:
Jeffrey Holland
2025-03-19 16:07:48 +01:00
parent a6b5845d65
commit 66c6239634
2 changed files with 4 additions and 9 deletions

View File

@@ -49,7 +49,6 @@ import {
VaultIcons,
} from "@bitwarden/vault";
import { Fido2PlaceholderComponent } from "../app/components/fido2placeholder.component";
import { AccessibilityCookieComponent } from "../auth/accessibility-cookie.component";
import { maxAccountsGuardFn } from "../auth/guards/max-accounts.guard";
import { RemovePasswordComponent } from "../auth/remove-password.component";
@@ -181,15 +180,11 @@ const routes: Routes = [
canActivate: [authGuard],
},
{
path: "passkeys",
component: Fido2PlaceholderComponent,
},
{
path: "passkeys",
path: "fido2-assertion",
component: Fido2VaultComponent,
},
{
path: "create-passkey",
path: "fido2-creation",
component: Fido2CreateComponent,
},
{

View File

@@ -139,7 +139,7 @@ export class DesktopFido2UserInterfaceSession implements Fido2UserInterfaceSessi
// make the cipherIds available to the UI.
this.availableCipherIdsSubject.next(cipherIds);
await this.showUi("/passkeys", this.windowObject.windowXy);
await this.showUi("/fido2-assertion", this.windowObject.windowXy);
const chosenCipherResponse = await this.waitForUiChosenCipher();
@@ -224,7 +224,7 @@ export class DesktopFido2UserInterfaceSession implements Fido2UserInterfaceSessi
this.rpId.next(rpId);
try {
await this.showUi("/create-passkey", this.windowObject.windowXy);
await this.showUi("/fido2-creation", this.windowObject.windowXy);
// Wait for the UI to wrap up
const confirmation = await this.waitForUiNewCredentialConfirmation();