remove other PR code

This commit is contained in:
Eugenio Romano
2019-12-17 17:16:49 +00:00
parent 0c9726049a
commit aba7095d3d
7 changed files with 8 additions and 77 deletions

View File

@@ -22,7 +22,6 @@ import { Observable } from 'rxjs';
import { AppConfigService } from '../app-config/app-config.service';
import { AuthGuardBase } from './auth-guard-base';
import { JwtHelperService } from './jwt-helper.service';
import { MatDialog } from '@angular/material';
@Injectable({
providedIn: 'root'
@@ -34,9 +33,8 @@ export class AuthGuard extends AuthGuardBase {
constructor(private jwtHelperService: JwtHelperService,
authenticationService: AuthenticationService,
router: Router,
appConfigService: AppConfigService,
dialog: MatDialog) {
super(authenticationService, router, appConfigService, dialog);
appConfigService: AppConfigService) {
super(authenticationService, router, appConfigService);
this.ticketChangeBind = this.ticketChange.bind(this);
window.addEventListener('storage', this.ticketChangeBind);