web app updates for deleting a node and disabling node context options

This commit is contained in:
Blake J. Harnden 2018-05-14 14:33:17 -07:00
parent 8c31b75c39
commit f004d20b79
5 changed files with 104 additions and 35 deletions

View file

@ -77,6 +77,10 @@ class CoreRest {
});
}
async nodeTerminal(nodeId) {
return await $.getJSON(`/sessions/${this.currentSession}/nodes/${nodeId}/terminal`);
}
async createLink(link) {
return await postJson(`/sessions/${this.currentSession}/links`, link);
}