Complete account endpoints

This commit is contained in:
2020-05-06 12:30:32 +02:00
parent a6dd5bb7f4
commit ad7ca3136a
2 changed files with 38 additions and 29 deletions

View File

@@ -22,7 +22,10 @@ router.put('/:id', async (req, res) => {
const account = await Account.updateAccount(data, id);
res.status(200).json(...account);
} catch (error) {
res.status(500).json({ message: `Failed to update account with id ${id}.`, error });
res.status(500).json({
message: `Failed to update account with id ${id}.`,
error,
});
}
});
@@ -31,24 +34,30 @@ router.delete('/:id', async (req, res) => {
try {
const account = await Account.deleteAccount(id);
res.status(200).json({message: `Account with id ${id} successfully deleted.`});
res.status(200).json({
message: `Account with id ${id} successfully deleted.`,
});
} catch (error) {
res.status(500).json({ message: `Failed to delete account with id ${id}.`, error });
res.status(500).json({
message: `Failed to delete account with id ${id}.`,
error,
});
}
});
router.get('/:id/meetings', async (req, res) => {
const { id } = req.params;
// // Get list of meetings by id
// router.get('/', async (req, res) => {
// const { id } = req.body;
// try {
// const meetings = await Account.getMeetingsByAccountId(id);
// res.status(200).json(meetings);
// } catch (error) {
// res.status(500).json({ message: "Couldn't get meetings for account with id ${id}.", error });
// }
// });
try {
const meetings = await Account.getMeetingsByAccountId(id);
res.status(200).json(meetings);
} catch (error) {
res.status(500).json({
message: `Couldn't get meetings for account with id ${id}.`,
error,
});
}
});
router.get('/:id', async (req, res) => {
const id = req.params.id;