Vulcan/packages/_nova-post-by-feed/lib/client/templates/feeds.js

12 lines
236 B
JavaScript
Raw Normal View History

2015-09-17 14:51:14 +09:00
Template.feeds.onCreated(function () {
var template = this;
template.subscribe('feeds');
template.subscribe('allUsersAdmin');
});
Template.feeds.helpers({
feeds: function(){
return Feeds.find({}, {sort: {url: 1}});
}
});