mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
13 lines
No EOL
260 B
JavaScript
13 lines
No EOL
260 B
JavaScript
Meteor.startup(function () {
|
|
|
|
Router.route('api', {
|
|
where: 'server',
|
|
path: '/api/:limit?',
|
|
action: function() {
|
|
var limit = parseInt(this.params.limit);
|
|
this.response.write(serveAPI(limit));
|
|
this.response.end();
|
|
}
|
|
});
|
|
|
|
}); |