1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-07 04:03:29 +00:00

removed unused code from login, 2fa components (#6565)

This commit is contained in:
SmithThe4th
2023-10-12 14:53:13 -04:00
committed by GitHub
parent 3fbc287f4b
commit e7fcf97a94
3 changed files with 5 additions and 29 deletions

View File

@@ -19,7 +19,6 @@ import { PasswordGenerationServiceAbstraction } from "@bitwarden/common/tools/ge
import { SyncService } from "@bitwarden/common/vault/abstractions/sync/sync.service.abstraction";
import { flagEnabled } from "../../platform/flags";
import { BrowserRouterService } from "../../platform/popup/services/browser-router.service";
@Component({
selector: "app-login",
@@ -45,8 +44,7 @@ export class LoginComponent extends BaseLoginComponent {
formBuilder: FormBuilder,
formValidationErrorService: FormValidationErrorsService,
route: ActivatedRoute,
loginService: LoginService,
private routerService: BrowserRouterService
loginService: LoginService
) {
super(
devicesApiService,
@@ -72,16 +70,6 @@ export class LoginComponent extends BaseLoginComponent {
super.successRoute = "/tabs/vault";
super.onSuccessfulLoginNavigate = async () => {
const previousUrl = this.routerService.getPreviousUrl();
if (previousUrl) {
this.router.navigateByUrl(previousUrl);
} else {
this.router.navigate([this.successRoute]);
}
};
this.showPasswordless = flagEnabled("showPasswordless");
if (this.showPasswordless) {

View File

@@ -22,7 +22,6 @@ import { SyncService } from "@bitwarden/common/vault/abstractions/sync/sync.serv
import { DialogService } from "@bitwarden/components";
import { BrowserApi } from "../../platform/browser/browser-api";
import { BrowserRouterService } from "../../platform/popup/services/browser-router.service";
import { PopupUtilsService } from "../../popup/services/popup-utils.service";
const BroadcasterSubscriptionId = "TwoFactorComponent";
@@ -53,7 +52,6 @@ export class TwoFactorComponent extends BaseTwoFactorComponent {
loginService: LoginService,
configService: ConfigServiceAbstraction,
private dialogService: DialogService,
private routerService: BrowserRouterService,
@Inject(WINDOW) protected win: Window
) {
super(
@@ -86,16 +84,6 @@ export class TwoFactorComponent extends BaseTwoFactorComponent {
super.successRoute = "/tabs/vault";
super.onSuccessfulLoginNavigate = async () => {
const previousUrl = this.routerService.getPreviousUrl();
if (previousUrl) {
this.router.navigateByUrl(previousUrl);
} else {
this.router.navigate([this.successRoute]);
}
};
// FIXME: Chromium 110 has broken WebAuthn support in extensions via an iframe
this.webAuthnNewTab = true;
}

View File

@@ -73,7 +73,7 @@ const routes: Routes = [
path: "home",
component: HomeComponent,
canActivate: [UnauthGuard],
data: { state: "home", doNotSaveUrl: true },
data: { state: "home" },
},
{
path: "fido2",
@@ -85,7 +85,7 @@ const routes: Routes = [
path: "login",
component: LoginComponent,
canActivate: [UnauthGuard],
data: { state: "login", doNotSaveUrl: true },
data: { state: "login" },
},
{
path: "login-with-device",
@@ -109,13 +109,13 @@ const routes: Routes = [
path: "2fa",
component: TwoFactorComponent,
canActivate: [UnauthGuard],
data: { state: "2fa", doNotSaveUrl: true },
data: { state: "2fa" },
},
{
path: "2fa-options",
component: TwoFactorOptionsComponent,
canActivate: [UnauthGuard],
data: { state: "2fa-options", doNotSaveUrl: true },
data: { state: "2fa-options" },
},
{
path: "login-initiated",