From 7e0c113c49a9fff83139d97a965fa38b50401240 Mon Sep 17 00:00:00 2001 From: Jared Snider Date: Mon, 16 Dec 2024 17:19:23 -0500 Subject: [PATCH] PM-8113 - Move 2FA Duo to own comp folder. --- .../child-components/two-factor-auth-duo/index.ts | 0 .../two-factor-auth-duo.component.html | 0 .../{ => two-factor-auth-duo}/two-factor-auth-duo.component.ts | 0 .../src/angular/two-factor-auth/two-factor-auth.component.ts | 2 +- 4 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-duo/index.ts rename libs/auth/src/angular/two-factor-auth/child-components/{ => two-factor-auth-duo}/two-factor-auth-duo.component.html (100%) rename libs/auth/src/angular/two-factor-auth/child-components/{ => two-factor-auth-duo}/two-factor-auth-duo.component.ts (100%) diff --git a/libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-duo/index.ts b/libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-duo/index.ts new file mode 100644 index 0000000000..e69de29bb2 diff --git a/libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-duo.component.html b/libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-duo/two-factor-auth-duo.component.html similarity index 100% rename from libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-duo.component.html rename to libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-duo/two-factor-auth-duo.component.html diff --git a/libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-duo.component.ts b/libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-duo/two-factor-auth-duo.component.ts similarity index 100% rename from libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-duo.component.ts rename to libs/auth/src/angular/two-factor-auth/child-components/two-factor-auth-duo/two-factor-auth-duo.component.ts diff --git a/libs/auth/src/angular/two-factor-auth/two-factor-auth.component.ts b/libs/auth/src/angular/two-factor-auth/two-factor-auth.component.ts index bb62df7f4f..1758343714 100644 --- a/libs/auth/src/angular/two-factor-auth/two-factor-auth.component.ts +++ b/libs/auth/src/angular/two-factor-auth/two-factor-auth.component.ts @@ -42,7 +42,7 @@ import { } from "@bitwarden/components"; import { TwoFactorAuthAuthenticatorComponent } from "./child-components/two-factor-auth-authenticator.component"; -import { TwoFactorAuthDuoComponent } from "./child-components/two-factor-auth-duo.component"; +import { TwoFactorAuthDuoComponent } from "./child-components/two-factor-auth-duo/two-factor-auth-duo.component"; import { TwoFactorAuthEmailComponent } from "./child-components/two-factor-auth-email/two-factor-auth-email.component"; import { TwoFactorAuthWebAuthnComponent } from "./child-components/two-factor-auth-webauthn.component"; import { TwoFactorAuthYubikeyComponent } from "./child-components/two-factor-auth-yubikey.component";