Skip to content
Snippets Groups Projects
Commit 62b92a8d authored by Chris Hines's avatar Chris Hines
Browse files

still fixing redirect

parent d176913a
No related branches found
No related tags found
2 merge requests!21New css dev,!13Dev
Pipeline #7546 passed
......@@ -54,7 +54,7 @@ export class AuthorisationService {
this.getSshAuthzServers();
this.keys = [];
this.backendSelectionService.apiserver.pipe(filter((v) => v !== null && v !== undefined))
.subscribe((value) => { this.backendURI = value.tes ; this.updateAgentContents() })
.subscribe((value) => { this.backendURI = value.tes ; this.agentContents.next(null) })
this.agentContents.subscribe((value) => this.updateLoggedAuthZ());
this.sshAuthzServers.subscribe((value) => this.updateLoggedAuthZ());
}
......@@ -218,7 +218,6 @@ public getKeys(id?: Identity) {
}
keys.push(keyCert);
sessionStorage.setItem('keys',JSON.stringify(keys))
this.sshAdd(keyCert);
// this.tesService.keyCert.next(keyCert);
// As soon as the certificate has been generated, we log back out of the signing server
if (!(sshauthzservice.logout === null)) {
......@@ -226,9 +225,8 @@ public getKeys(id?: Identity) {
}
let path=sessionStorage.getItem('path');
//skip1 because loggedInAuthZ is a behaviour subject and we don't want the current value but the value
//after updateAgentcontents has run
this.loggedInAuthZ.pipe(skip(1),take(1)).subscribe( () => {this.readyToNavigate.next([true,path])});
this.updateAgentContents();
this.sshAdd(keyCert);
// only navigate once the agent contents has been refreshed
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment