Advertisement
Guest User

Untitled

a guest
Oct 30th, 2014
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. router.post("/getCourses",function(req,res){
  2.   console.log("Here post /getCourses");
  3.   db.Course.findAll({group: 'beginAt'},'DESC').success(function(courses){
  4.     console.log("Find done");
  5.     console.log(JSON.stringify(courses));
  6.     res.send(courses);
  7.   });
  8. });// end getCourses
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement