Skip to content

Instantly share code, notes, and snippets.

@ciberch
Created May 22, 2012 19:23
Show Gist options
  • Save ciberch/2771087 to your computer and use it in GitHub Desktop.
Save ciberch/2771087 to your computer and use it in GitHub Desktop.
Activity Streams Mongoose Query
// https://github.com/ciberch/activity-streams-mongoose
Activity.find().sort('published', 'descending').limit(10).run(
function (err, docs) {
var activities = [];
if (!err && docs) {
activities = docs;
res.render('index', {activities: activities});
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment