Files
DiceCloud/rpg-docs/Routes/API.js
2017-09-13 10:01:32 +02:00

11 lines
251 B
JavaScript

Router.map(function() {
this.route("vmixAPI", {
path: "/vmix-character/:_id/",
where: "server",
action: function() {
this.response.setHeader("Content-Type", "application/json");
this.response.end(vMixJson(this.params._id));
},
});
});