mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
11 lines
236 B
JavaScript
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}});
|
|
}
|
|
});
|