JonAbrams/synth

View on GitHub
templates/back/mongojs/resources/tweets/getTweets.js

Summary

Maintainability
A
0 mins
Test Coverage
exports.getIndex = function (db) {
  return db.collection('tweets').find()
  .sort({ created_at: -1 })
  .limit(30)
  .toArray().then(function (tweets) {
    return {
      tweets: tweets
    };
  });
};