mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
18 lines
No EOL
266 B
JavaScript
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();
|
|
}
|
|
});
|
|
|
|
});
|
|
|
|
}); |