Merge pull request #610 from prauscher/fix-api

Fix api
This commit is contained in:
Peter 'Pita' Martischka 2012-04-07 07:22:11 -07:00
commit 3478649973
1 changed files with 3 additions and 2 deletions

View File

@ -4,7 +4,7 @@ var formidable = require('formidable');
var apiHandler = require('../../handler/APIHandler');
//This is for making an api call, collecting all post information and passing it to the apiHandler
exports.apiCaller = function(req, res, fields) {
var apiCaller = function(req, res, fields) {
res.header("Content-Type", "application/json; charset=utf-8");
apiLogger.info("REQUEST, " + req.params.func + ", " + JSON.stringify(fields));
@ -26,6 +26,7 @@ exports.apiCaller = function(req, res, fields) {
apiHandler.handle(req.params.func, fields, req, res);
}
exports.apiCaller = apiCaller;
exports.expressCreateServer = function (hook_name, args, cb) {
//This is a api GET call, collect all post informations and pass it to the apiHandler
@ -55,4 +56,4 @@ exports.expressCreateServer = function (hook_name, args, cb) {
res.end("OK");
});
});
}
}