Advertisement
Guest User

Untitled

a guest
May 5th, 2015
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. Words.update({
  2. userId: req.session.passport.user,
  3. folderId: req.body.folderId,
  4. word:req.body.addword
  5. }, {
  6. $set:{
  7. userId: req.session.passport.user,
  8. folderId: req.body.folderId,
  9. word:req.body.addword,
  10. meaning: req.body.addmeaning,
  11. example: req.body.addexample,
  12. image: req.body.addimage,
  13. NoCorrectAns: 0,
  14. createdAt: Date()
  15. }
  16.  
  17. },{
  18. upsert: true
  19. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement