chore(docs): keep root naming

This commit is contained in:
Elian Doran
2025-03-30 22:29:29 +03:00
parent 9c83738a16
commit dc31ea2333
167 changed files with 11020 additions and 1206 deletions

View File

@@ -0,0 +1,14 @@
// creating notes is backend (server) responsibility so we need to pass
// the control there
const taskNoteId = await api.runOnBackend(() => {
const todoRootNote = api.getNoteWithLabel('taskTodoRoot');
const resp = api.createTextNote(todoRootNote.noteId, 'new task', '');
return resp.note.noteId;
});
// wait until the frontend is fully synced with the changes made on the backend above
await api.waitUntilSynced();
// we got an ID of newly created note and we want to immediatelly display it
await api.activateNewNote(taskNoteId);