2017-10-22 09:10:33 +08:00
|
|
|
"use strict";
|
|
|
|
|
2017-10-15 11:31:44 +08:00
|
|
|
const express = require('express');
|
|
|
|
const router = express.Router();
|
2017-10-16 07:47:05 +08:00
|
|
|
const sql = require('../../services/sql');
|
|
|
|
const changePassword = require('../../services/change_password');
|
|
|
|
const auth = require('../../services/auth');
|
2017-10-15 11:31:44 +08:00
|
|
|
|
2017-10-16 04:32:49 +08:00
|
|
|
router.post('/change', auth.checkApiAuth, async (req, res, next) => {
|
2017-10-15 11:31:44 +08:00
|
|
|
const result = await changePassword.changePassword(req.body['current_password'], req.body['new_password']);
|
|
|
|
|
|
|
|
res.send(result);
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = router;
|