Fix accounts model

This commit is contained in:
2020-05-01 18:24:59 +02:00
parent 7e4d186446
commit dc3e0d0b18
2 changed files with 11 additions and 16 deletions

View File

@@ -3,16 +3,15 @@ let router = express.Router();
let Account = require('../models/accountModel');
// Add a user
router.post('/', async (req, res) => {
const userData = {...req.body};
const userData = { ...req.body };
try {
const user = await Account.addUser(userData);
res.status(201).json(user);
} catch {
res.status(500).json({ message: "Failed to add new user" });
} catch (error) {
res.status(500).json({ message: 'Failed to add new user', error });
}
});