Vulcan/packages/telescope-rss/lib/server/routes.js

26 lines
440 B
JavaScript
Raw Normal View History

2014-06-27 19:57:30 +09:00
Meteor.startup(function () {
2014-11-17 14:53:42 +09:00
// Post RSS
2014-06-27 19:57:30 +09:00
2014-11-17 14:53:42 +09:00
Router.route('/feed.xml', {
name: 'feed',
where: 'server',
action: function() {
this.response.write(servePostRSS());
this.response.end();
}
});
2014-09-24 17:51:21 +08:00
2014-11-17 14:53:42 +09:00
// Comment RSS
2014-06-27 19:57:30 +09:00
2014-11-17 14:53:42 +09:00
Router.route('/rss/comments.xml', {
name: 'rss_comments',
where: 'server',
action: function() {
this.response.write(serveCommentRSS());
this.response.end();
}
2014-06-27 19:57:30 +09:00
});
2014-09-24 17:51:21 +08:00
});