değeri true ya döndürmeye çalışıyorum ama olmuyor
loggedIn=false;
login(loginUser: LoginUser) {
let headers = new HttpHeaders()
headers = headers.append("Content-Type", "application/json")
this.http.post(this.path + '/login', loginUser, { headers: headers }).subscribe(data => {
this.loggedIn==true;
this.saveToken(data['access_token']);
return true
});
}