katrotz/splitify

View on GitHub
lib/models/restaurant.js

Summary

Maintainability
A
0 mins
Test Coverage
Restaurants = new Meteor.Collection('restaurants');

RestaurantsService = {
  list: function() {
    return Restaurants.find({}, {sort: {title: 1}});
  },
}