stub out shared sessions

This commit is contained in:
sawka 2023-02-21 22:42:44 -08:00
parent 7f3e688475
commit 654ff3b0b8
2 changed files with 5 additions and 1 deletions

View File

@ -3021,7 +3021,7 @@ class MainSideBar extends React.Component<{}, {}> {
}
handleNewSharedSession() {
console.log("create shared session");
GlobalCommandRunner.openSharedSession();
}
clickRemotes() {

View File

@ -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 {