ref(connectable tab) getRecoveryToken method

This commit is contained in:
Clem Fern
2023-05-12 20:06:40 +02:00
parent bd4b11813c
commit 38b8702373
4 changed files with 10 additions and 24 deletions

View File

@@ -186,14 +186,6 @@ export class SSHTabComponent extends ConnectableTerminalTabComponent<SSHProfile>
}
}
async getRecoveryToken (options?: GetRecoveryTokenOptions): Promise<RecoveryToken> {
return {
type: 'app:ssh-tab',
profile: this.profile,
savedState: options?.includeState && this.frontend?.saveState(),
}
}
showPortForwarding (): void {
const modal = this.ngbModal.open(SSHPortForwardingModalComponent).componentInstance as SSHPortForwardingModalComponent
modal.session = this.sshSession!