mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 10:26:08 +01:00 
			
		
		
		
	
		
			
	
	
		
			12 lines
		
	
	
		
			370 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
		
		
			
		
	
	
			12 lines
		
	
	
		
			370 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
|  | const express = require('express'); | ||
|  | const router = express.Router(); | ||
|  | const sql = require('../sql'); | ||
|  | const changePassword = require('../change_password'); | ||
|  | 
 | ||
|  | router.post('/change', async (req, res, next) => { | ||
|  |     const result = await changePassword.changePassword(req.body['current_password'], req.body['new_password']); | ||
|  | 
 | ||
|  |     res.send(result); | ||
|  | }); | ||
|  | 
 | ||
|  | module.exports = router; |