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