Skip to content

Instantly share code, notes, and snippets.

@andrewjmead
Created April 15, 2016 11:28
Show Gist options
  • Save andrewjmead/aaa23774be1dc9fc41cbc861e17056a8 to your computer and use it in GitHub Desktop.
Save andrewjmead/aaa23774be1dc9fc41cbc861e17056a8 to your computer and use it in GitHub Desktop.
Seth GET /user
app.get('/user', function(req, res) {
db.user.findAll().then(function(user) {
res.json(user.toPublicJSON());
}),
function(e) {
res.status(500).send();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment