Guest User

Untitled

a guest
Sep 20th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. // User list
  2. app.get('/userlist', function(req, res) {
  3. TestUser.find({}, function(err, user) {
  4. user = user.map(function(u) {
  5. return { username: u.username, password: d.password };
  6. });
  7. res.render('user/index.jade', {
  8. locals: { d: user }
  9. });
  10. });
  11. });
Add Comment
Please, Sign In to add comment