Vulcan/client/views/admin/currentVersion.js

11 lines
233 B
JavaScript
Raw Normal View History

2014-12-30 19:14:44 +09:00
Template[getTemplate('currentVersion')].helpers({
currentVersion: function () {
return Versions.find({read: false}).fetch()[0];
}
});
Meteor.startup(function () {
heroModules.push({
template: 'currentVersion'
});
});