trilium/node/routes/api/password.js
2017-10-15 17:09:41 -04:00

13 lines
431 B
JavaScript

const express = require('express');
const router = express.Router();
const sql = require('../../sql');
const changePassword = require('../../change_password');
const auth = require('../../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;