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');
|
2018-01-07 22:35:44 +08:00
|
|
|
const wrap = require('express-promise-wrap').wrap;
|
2017-10-15 11:31:44 +08:00
|
|
|
|
2018-01-07 22:35:44 +08:00
|
|
|
router.post('/change', auth.checkApiAuth, wrap(async (req, res, next) => {
|
2017-11-07 08:48:02 +08:00
|
|
|
const result = await changePassword.changePassword(req.body['current_password'], req.body['new_password'], req);
|
2017-10-15 11:31:44 +08:00
|
|
|
|
|
|
|
res.send(result);
|
2018-01-07 22:35:44 +08:00
|
|
|
}));
|
2017-10-15 11:31:44 +08:00
|
|
|
|
|
|
|
module.exports = router;
|