mirror of
https://github.com/zadam/trilium.git
synced 2024-11-11 18:08:13 +08:00
16 lines
No EOL
425 B
JavaScript
16 lines
No EOL
425 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
UPDATE_CONTENT: 'CONTENT',
|
|
UPDATE_TITLE: 'TITLE',
|
|
// associated noteId is parent of notes where position changes happened
|
|
CHANGE_POSITION: 'POSITION',
|
|
CHANGE_EXPANDED: 'EXPANDED',
|
|
CREATE_NOTE: 'CREATE',
|
|
DELETE_NOTE: 'DELETE',
|
|
CHANGE_PARENT: 'PARENT',
|
|
ENCRYPTION: 'ENCRYPTION',
|
|
CHANGE_PASSWORD: 'PASSWORD',
|
|
SETTINGS: 'SETTINGS',
|
|
SYNC: 'SYNC'
|
|
}; |