mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-03-09 13:00:53 +01:00
stub out shared sessions
This commit is contained in:
parent
7f3e688475
commit
654ff3b0b8
@ -3021,7 +3021,7 @@ class MainSideBar extends React.Component<{}, {}> {
|
||||
}
|
||||
|
||||
handleNewSharedSession() {
|
||||
console.log("create shared session");
|
||||
GlobalCommandRunner.openSharedSession();
|
||||
}
|
||||
|
||||
clickRemotes() {
|
||||
|
@ -2684,6 +2684,10 @@ class CommandRunner {
|
||||
deleteBookmark(bookmarkId : string) : void {
|
||||
GlobalModel.submitCommand("bookmark", "delete", [bookmarkId], {"nohist": "1"}, true);
|
||||
}
|
||||
|
||||
openSharedSession() : void {
|
||||
GlobalModel.submitCommand("session", "openshared", null, {"nohist": "1"}, true);
|
||||
}
|
||||
};
|
||||
|
||||
function cmdPacketString(pk : FeCmdPacketType) : string {
|
||||
|
Loading…
Reference in New Issue
Block a user