Vulcan/packages/_telescope-post-by-feed/lib/client/templates/feeds.js
2016-02-17 11:28:06 +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}});
}
});