2021-12-20 15:47:17 +01:00
|
|
|
import { Component } from "@angular/core";
|
|
|
|
import { Router } from "@angular/router";
|
2018-01-31 23:06:14 +01:00
|
|
|
|
2023-02-06 22:53:37 +01:00
|
|
|
import { HintComponent as BaseHintComponent } from "@bitwarden/angular/auth/components/hint.component";
|
2022-06-14 17:10:53 +02:00
|
|
|
import { ApiService } from "@bitwarden/common/abstractions/api.service";
|
|
|
|
import { I18nService } from "@bitwarden/common/abstractions/i18n.service";
|
|
|
|
import { LogService } from "@bitwarden/common/abstractions/log.service";
|
|
|
|
import { PlatformUtilsService } from "@bitwarden/common/abstractions/platformUtils.service";
|
2023-02-06 22:53:37 +01:00
|
|
|
import { LoginService } from "@bitwarden/common/auth/abstractions/login.service";
|
2018-01-31 23:06:14 +01:00
|
|
|
|
|
|
|
@Component({
|
2021-12-20 15:47:17 +01:00
|
|
|
selector: "app-hint",
|
|
|
|
templateUrl: "hint.component.html",
|
2018-01-31 23:06:14 +01:00
|
|
|
})
|
2018-04-04 15:47:49 +02:00
|
|
|
export class HintComponent extends BaseHintComponent {
|
2021-12-20 15:47:17 +01:00
|
|
|
constructor(
|
|
|
|
router: Router,
|
|
|
|
platformUtilsService: PlatformUtilsService,
|
|
|
|
i18nService: I18nService,
|
|
|
|
apiService: ApiService,
|
2022-10-28 20:54:55 +02:00
|
|
|
logService: LogService,
|
|
|
|
loginService: LoginService
|
2021-12-20 15:47:17 +01:00
|
|
|
) {
|
2022-10-28 20:54:55 +02:00
|
|
|
super(router, i18nService, apiService, platformUtilsService, logService, loginService);
|
2021-12-20 15:47:17 +01:00
|
|
|
}
|
2018-01-31 23:06:14 +01:00
|
|
|
}
|