src/app/providers/guards/log-out.guard.ts
Methods |
constructor(authService: AuthService, storage: StorageService, timeoutService: TimeoutService, bankAccountService: BankAccountService, reportService: ReportService, phoneService: PhoneService)
|
|||||||||||||||||||||
Defined in src/app/providers/guards/log-out.guard.ts:11
|
|||||||||||||||||||||
Parameters :
|
canActivate |
canActivate()
|
Defined in src/app/providers/guards/log-out.guard.ts:21
|
Returns :
boolean
|
import { PhoneService } from './../services/phones.service';
import { ReportService } from './../services/report.service';
import { BankAccountService } from './../services/bank-account.service';
import { Injectable } from '@angular/core';
import { CanActivate, Router } from '@angular/router';
import { TimeoutService } from '../../components/timeout';
import { AuthService, StorageService } from '../services';
import { JWT_KEY } from '../../app.constants';
@Injectable()
export class LogOutGuard implements CanActivate {
constructor(
private authService: AuthService,
private storage: StorageService,
private timeoutService: TimeoutService,
private bankAccountService: BankAccountService,
private reportService: ReportService,
private phoneService: PhoneService
) {}
canActivate() {
this.timeoutService.stopTimer();
this.storage.delete(JWT_KEY);
this.bankAccountService.clearCache();
this.reportService.clearCache();
this.phoneService.clearCache();
this.authService.logout();
return false;
}
}