2018-04-04 15:47:49 +02:00
|
|
|
import { Component, } from '@angular/core';
|
2018-02-02 18:01:55 +01:00
|
|
|
import { Router } from '@angular/router';
|
|
|
|
|
|
|
|
import { ToasterService } from 'angular2-toaster';
|
2018-02-08 16:37:54 +01:00
|
|
|
import { Angulartics2 } from 'angulartics2';
|
2018-02-02 18:01:55 +01:00
|
|
|
|
|
|
|
import { AuthService } from 'jslib/abstractions/auth.service';
|
|
|
|
import { I18nService } from 'jslib/abstractions/i18n.service';
|
|
|
|
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
|
|
|
|
|
2018-04-04 15:47:49 +02:00
|
|
|
import {
|
|
|
|
TwoFactorOptionsComponent as BaseTwoFactorOptionsComponent
|
|
|
|
} from 'jslib/angular/components/two-factor-options.component';
|
2018-02-02 18:01:55 +01:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-two-factor-options',
|
2018-04-06 18:25:22 +02:00
|
|
|
templateUrl: 'two-factor-options.component.html',
|
2018-02-02 18:01:55 +01:00
|
|
|
})
|
2018-04-04 15:47:49 +02:00
|
|
|
export class TwoFactorOptionsComponent extends BaseTwoFactorOptionsComponent {
|
|
|
|
constructor(authService: AuthService, router: Router,
|
|
|
|
analytics: Angulartics2, toasterService: ToasterService,
|
|
|
|
i18nService: I18nService, platformUtilsService: PlatformUtilsService) {
|
2018-04-07 06:19:04 +02:00
|
|
|
super(authService, router, analytics, toasterService, i18nService, platformUtilsService, window);
|
2018-02-02 18:01:55 +01:00
|
|
|
}
|
|
|
|
}
|