add destination parameter in get userinfo
This commit is contained in:
parent
2261f4ae6f
commit
7ea6bfad7a
|
@ -203,7 +203,7 @@ export class EGIDataTransferComponent {
|
|||
// console.log(this.selectedDestination)
|
||||
this.status = "loading";
|
||||
let headers = new HttpHeaders({'Authorization': 'Bearer '+this.accessToken});
|
||||
this.subscriptions.push(this.http.get(this.APIURL + "/user/info", {headers: headers}).subscribe(
|
||||
this.subscriptions.push(this.http.get(this.APIURL + "/user/info?dest="+this.selectedDestination.id, {headers: headers}).subscribe(
|
||||
res => {
|
||||
// console.log(res)
|
||||
let body = {
|
||||
|
|
Loading…
Reference in New Issue