Jenderal92

Untitled

Jul 22nd, 2022
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. exports.findAll = (req, res) => {
  2. Category.find()
  3. .then(categories => {
  4. res.send(categories);
  5. }).catch(err => {
  6. res.status(500).send({
  7. message: err.message || "Something went wrong."
  8. });
  9. });
  10. };
Advertisement
Add Comment
Please, Sign In to add comment