Guest User

Untitled

a guest
Jan 21st, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. setTimeout(function() {
  2. req.model.auth.findOne({code: token}, function(err, auth) {
  3. if(auth && auth.status == 'created') {
  4. auth.destroy();
  5. }
  6. });
  7. }, 1000*60*10);
Add Comment
Please, Sign In to add comment