Vulcan/packages/telescope-rss/lib/server/routes.js
2014-06-27 19:57:30 +09:00

18 lines
No EOL
266 B
JavaScript

Meteor.startup(function () {
Router.map(function() {
// RSS
this.route('feed', {
where: 'server',
path: '/feed.xml',
action: function() {
this.response.write(serveRSS());
this.response.end();
}
});
});
});