Skip to content
Snippets Groups Projects
Verified Commit 73e5b5f5 authored by Lukas Maximilian Kimpel's avatar Lukas Maximilian Kimpel
Browse files

Remove blank line, remove unused import, remove ToDo comment

parent 9dbc0d7f
No related merge requests found
import { Injectable } from '@angular/core'; import { Injectable } from '@angular/core';
import { CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot, Router } from '@angular/router'; import { CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot, Router } from '@angular/router';
import { Observable } from 'rxjs/Observable';
import { AuthenticationService } from './authentication.service'; import { AuthenticationService } from './authentication.service';
import 'rxjs/add/operator/map'; import 'rxjs/add/operator/map';
import 'rxjs/add/observable/of'; import 'rxjs/add/observable/of';
......
...@@ -40,5 +40,4 @@ export class AuthenticationInterceptor implements HttpInterceptor { ...@@ -40,5 +40,4 @@ export class AuthenticationInterceptor implements HttpInterceptor {
return next.handle(req); return next.handle(req);
} }
} }
} }
...@@ -7,7 +7,6 @@ import { DataStoreService } from './data-store.service'; ...@@ -7,7 +7,6 @@ import { DataStoreService } from './data-store.service';
import { HttpClient, HttpHeaders } from '@angular/common/http'; import { HttpClient, HttpHeaders } from '@angular/common/http';
import { ClientAuthentication } from './client-authentication'; import { ClientAuthentication } from './client-authentication';
// TODO: connect to API
@Injectable() @Injectable()
export class AuthenticationService { export class AuthenticationService {
private readonly STORAGE_KEY: string = 'USER'; private readonly STORAGE_KEY: string = 'USER';
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment