File

src/app/providers/guards/log-out.guard.ts

Index

Methods

Constructor

constructor(authService: AuthService, storage: StorageService, timeoutService: TimeoutService, bankAccountService: BankAccountService, reportService: ReportService, phoneService: PhoneService)
Parameters :
Name Type Optional
authService AuthService No
storage StorageService No
timeoutService TimeoutService No
bankAccountService BankAccountService No
reportService ReportService No
phoneService PhoneService No

Methods

canActivate
canActivate()
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;
  }
}

results matching ""

    No results matching ""