added dialog and read only view of attributes

This commit is contained in:
azivner
2018-01-11 00:01:16 -05:00
parent b250ad593c
commit 8fe6a9353a
10 changed files with 145 additions and 7 deletions

View File

@@ -23,6 +23,10 @@ function newNoteImageId() {
return randomString(12);
}
function newAttributeId() {
return randomString(12);
}
function randomString(length) {
return randtoken.generate(length);
}
@@ -106,6 +110,7 @@ module.exports = {
newNoteHistoryId,
newImageId,
newNoteImageId,
newAttributeId,
toBase64,
fromBase64,
hmac,