export subtree to tar file

This commit is contained in:
azivner
2018-02-25 10:55:21 -05:00
parent 12c06ae97e
commit 60bba46d80
7 changed files with 83 additions and 50 deletions

View File

@@ -0,0 +1,11 @@
"use strict";
function exportSubTree(noteId) {
const url = getHost() + "/api/export/" + noteId;
download(url);
}
function importSubTree(noteId) {
}