api root in onLoad

This commit is contained in:
reality 2013-05-17 14:13:42 +00:00
parent 1127d11a0e
commit 5da4d88ad9

View File

@ -5,8 +5,8 @@
var _ = require('underscore')._;
var api = function(dbot) {
this.pages = {
'/api': function(req, res) {
this.onLoad = function() {
dbot.modules.web.app.get('/api': function(req, res) {
var externalApi = {};
_.each(dbot.api, function(moduleApi, moduleName) {
externalApi[moduleName] = {};
@ -18,10 +18,8 @@ var api = function(dbot) {
});
res.render('api', { 'name': dbot.config.name, 'api': externalApi });
}
};
});
this.onLoad = function() {
dbot.modules.web.app.get('/api/:module/:method', function(req, res) {
var module = req.params.module,
method = req.params.method,