Complete account endpoints
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user