renamed encryption module to protected_session

This commit is contained in:
azivner
2017-11-14 22:36:36 -05:00
parent b28df3f093
commit 4aa70d3574
6 changed files with 11 additions and 11 deletions

View File

@@ -65,10 +65,10 @@ const contextMenu = (function() {
noteEditor.createNote(node, node.key, 'into');
}
else if (ui.cmd === "encryptSubTree") {
encryption.encryptSubTree(node.key);
protected_session.encryptSubTree(node.key);
}
else if (ui.cmd === "decryptSubTree") {
encryption.decryptSubTree(node.key);
protected_session.decryptSubTree(node.key);
}
else if (ui.cmd === "cut") {
cut(node);