Skip to content

Instantly share code, notes, and snippets.

@wharley
Created December 30, 2017 16:44
Show Gist options
  • Save wharley/7def5702d3dc378e6b26d427826c4aea to your computer and use it in GitHub Desktop.
Save wharley/7def5702d3dc378e6b26d427826c4aea to your computer and use it in GitHub Desktop.
Resource.before('post', hash_password).before('put', hash_password)
function hash_password(req, res, next) {
req.body.password = hash(req.body.password)
next()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment