From 4688cda4933f94fb0d073d56b3748a5b4bbd5d64 Mon Sep 17 00:00:00 2001 From: nil0x42 Date: Tue, 3 Dec 2019 15:49:27 -0300 Subject: [PATCH] [DOC] createNewNote(): Add missing `render` type (#740) --- src/services/notes.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/services/notes.js b/src/services/notes.js index 6eb354085..26a743b3f 100644 --- a/src/services/notes.js +++ b/src/services/notes.js @@ -78,7 +78,7 @@ async function copyChildAttributes(parentNote, childNote) { * - {string} parentNoteId * - {string} title * - {*} content - * - {string} type - text, code, file, image, search, book, relation-map + * - {string} type - text, code, file, image, search, book, relation-map, render * * Following are optional (have defaults) * - {string} mime - value is derived from default mimes for type @@ -543,4 +543,4 @@ module.exports = { protectNoteRecursively, scanForLinks, duplicateNote -}; \ No newline at end of file +};