1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-12-02 22:49:09 +02:00

Desktop: Allow unsharing a note

This commit is contained in:
Laurent Cozic
2021-05-16 17:28:49 +02:00
parent 6f2f24171d
commit f7d164be6e
9 changed files with 99 additions and 39 deletions

View File

@@ -307,7 +307,7 @@ export default class Note extends BaseItem {
includeTimestamps: true,
}, options);
const output = ['id', 'title', 'is_todo', 'todo_completed', 'todo_due', 'parent_id', 'encryption_applied', 'order', 'markup_language', 'is_conflict'];
const output = ['id', 'title', 'is_todo', 'todo_completed', 'todo_due', 'parent_id', 'encryption_applied', 'order', 'markup_language', 'is_conflict', 'is_shared'];
if (options.includeTimestamps) {
output.push('updated_time');