mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 18:36:30 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			423 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			423 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',
 | |
|     PROTECTED: 'PROTECTED',
 | |
|     CHANGE_PASSWORD: 'PASSWORD',
 | |
|     SETTINGS: 'SETTINGS',
 | |
|     SYNC: 'SYNC'
 | |
| }; |