mirror of
https://github.com/zadam/trilium.git
synced 2024-12-27 18:32:23 +08:00
fix backend API's getNote, getBranch, getAttribute, closes #2230
This commit is contained in:
parent
dc0d6d24bd
commit
449081807e
1 changed files with 3 additions and 3 deletions
|
@ -58,21 +58,21 @@ function BackendScriptApi(currentNote, apiParams) {
|
|||
* @param {string} noteId
|
||||
* @returns {Note|null}
|
||||
*/
|
||||
this.getNote = becca.getNote;
|
||||
this.getNote = noteId => becca.getNote(noteId);
|
||||
|
||||
/**
|
||||
* @method
|
||||
* @param {string} branchId
|
||||
* @returns {Branch|null}
|
||||
*/
|
||||
this.getBranch = becca.getBranch;
|
||||
this.getBranch = branchId => becca.getBranch(branchId);
|
||||
|
||||
/**
|
||||
* @method
|
||||
* @param {string} attributeId
|
||||
* @returns {Attribute|null}
|
||||
*/
|
||||
this.getAttribute = becca.getAttribute;
|
||||
this.getAttribute = attributeId => becca.getAttribute(attributeId);
|
||||
|
||||
/**
|
||||
* This is a powerful search method - you can search by attributes and their values, e.g.:
|
||||
|
|
Loading…
Reference in a new issue