Guest User

Untitled

a guest
Jan 16th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. app.get('/user/withdrawmoney',(req,res)=>{
  2. DB.find(req.session.id,(user)=>{
  3. if(user.balance < 0){
  4. DB.update()...//Update the balance
  5. ...//Send user money
  6. }
  7. })
  8.  
  9. })
Add Comment
Please, Sign In to add comment