Skip to content

Instantly share code, notes, and snippets.

@disaada
Created September 20, 2020 05:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save disaada/ad6382ce42b114f96304e9ba26354204 to your computer and use it in GitHub Desktop.
Save disaada/ad6382ce42b114f96304e9ba26354204 to your computer and use it in GitHub Desktop.
const user = require('./routes/user')
app.get('/user/:id', authenticateJWT, user.getUser)
app.put('/user/:id', authenticateJWT, user.updateUser)
app.delete('/user/:id', authenticateJWT, user.deleteUser)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment