Guest User

Untitled

a guest
May 25th, 2018
533
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. fetch('/api/someData', {
  2. method : "GET",
  3. })
  4. .then(......)
  5.  
  6. app.get('/api/:blah', (req, res, next) => {
  7. if(logged in or authenticated user){
  8. next()
  9. } else {
  10. res.redirect('someReAuthPage')
  11. }
  12. })
  13.  
  14.  
  15. app.get('/api/someData', (req, res) => {
  16. ..........
  17. res.json('someJsonData')
  18. }
Add Comment
Please, Sign In to add comment