src/app/business/services/http/login.service.ts
@@ -16,7 +16,7 @@ }; constructor(private http:HttpClient) { } public validate(username:string,password:string):Observable<Authorization>{ return this.http.post(this.urls.login,{username:username,password:password,mode:"Web"}).map( return this.http.post(this.urls.login, {username: username, password: password, mode: 'Web'}).map( (res:any) => { this.authorization = res; return res;