Vulcan/packages/telescope-post-by-feed/lib/client/templates/feeds.js
2015-09-17 14:51:14 +09:00

11 lines
236 B
JavaScript

Template.feeds.onCreated(function () {
var template = this;
template.subscribe('feeds');
template.subscribe('allUsersAdmin');
});
Template.feeds.helpers({
feeds: function(){
return Feeds.find({}, {sort: {url: 1}});
}
});