1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

logged in as on

This commit is contained in:
Kyle Spearrin
2019-06-04 00:03:27 -04:00
parent a60c60529f
commit fe3c611d5a
4 changed files with 12 additions and 6 deletions

View File

@@ -2,6 +2,7 @@ import { Component } from '@angular/core';
import { Router } from '@angular/router';
import { CryptoService } from 'jslib/abstractions/crypto.service';
import { EnvironmentService } from 'jslib/abstractions/environment.service';
import { I18nService } from 'jslib/abstractions/i18n.service';
import { LockService } from 'jslib/abstractions/lock.service';
import { MessagingService } from 'jslib/abstractions/messaging.service';
@@ -19,9 +20,10 @@ export class LockComponent extends BaseLockComponent {
constructor(router: Router, i18nService: I18nService,
platformUtilsService: PlatformUtilsService, messagingService: MessagingService,
userService: UserService, cryptoService: CryptoService,
storageService: StorageService, lockService: LockService) {
storageService: StorageService, lockService: LockService,
environmentService: EnvironmentService) {
super(router, i18nService, platformUtilsService, messagingService, userService, cryptoService,
storageService, lockService);
storageService, lockService, environmentService);
this.successRoute = '/tabs/current';
}