mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-02 19:36:12 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			473 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			473 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
"use strict";
 | 
						|
 | 
						|
const express = require('express');
 | 
						|
const router = express.Router();
 | 
						|
const sql = require('../../services/sql');
 | 
						|
const changePassword = require('../../services/change_password');
 | 
						|
const auth = require('../../services/auth');
 | 
						|
 | 
						|
router.post('/change', auth.checkApiAuth, async (req, res, next) => {
 | 
						|
    const result = await changePassword.changePassword(req.body['current_password'], req.body['new_password']);
 | 
						|
 | 
						|
    res.send(result);
 | 
						|
});
 | 
						|
 | 
						|
module.exports = router; |