constructor()

in angular/src/app/app-services/security.service.ts [13:17]


  constructor(private http: HttpClient) {
    const value = localStorage.getItem('identity');
    this.identity = new BehaviorSubject<Identity>(value && JSON.parse(value));
    this.identityObservable = this.identity.asObservable();
  }