mondora/mondora-website-back

View on GitHub
server/routes/manoxmano.js

Summary

Maintainability
A
0 mins
Test Coverage
Router.map(function () {

    this.route("manoxmano", {
        where: "server",
        action: function () {
            ManoXManoUsers.insert(this.request.body);
            this.response.writeHead(200);
            this.response.end();
        }
    });

});