Vulcan/packages/_nova-post-by-feed/lib/client/templates/feeds.js
2016-02-23 16:59:15 +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}});
}
});