Skip to content

Instantly share code, notes, and snippets.

@Daniel1984
Created January 10, 2021 15:42
Show Gist options
  • Save Daniel1984/5ab2281c702cebb5eba54d2b950a78e7 to your computer and use it in GitHub Desktop.
Save Daniel1984/5ab2281c702cebb5eba54d2b950a78e7 to your computer and use it in GitHub Desktop.
// middleware/getAccount.js
module.exports = async (req, res, next) => {
try {
const account = await req.db.Account.findByPk(req.body.account_id);
res.locals.account = account;
next();
} catch (err) {
next(err);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment