CIDARLAB / Fluigi-Cloud

Cloud Framework that powers Fluigi Cloud
BSD 2-Clause "Simplified" License
5 stars 3 forks source link

Implement logout from any pages #13

Open aonanam opened 7 years ago

aonanam commented 7 years ago

At the moment, you can only logout from the profile page, which takes a few pages to get to.

rkrishnasanka commented 7 years ago

Well here's how you can logout, essentially all you need to do is add a link to /logout and add a snippet of code similar to this into the nodejs application.

app.get('/logout', function(req, res){
  req.logout();
  res.redirect('/');
});