mirror of
https://github.com/reality/dbot.git
synced 2024-11-24 04:49:25 +01:00
24 lines
628 B
JavaScript
24 lines
628 B
JavaScript
var _ = require('underscore')._;
|
|
|
|
var pages = function(dbot) {
|
|
return {
|
|
'/imgur/random': function(req, res) {
|
|
var highScore = 0;
|
|
res.render('imgurr', { "highscore" : highScore });
|
|
},
|
|
|
|
'/imgur/stats': function(req, res) {
|
|
res.render('imgurstats', {
|
|
'name': dbot.config.name,
|
|
'totalHttpRequests': this.db.totalHttpRequests,
|
|
'totalApiRequests': this.db.totalApiRequests,
|
|
'totalImages': this.db.totalImages
|
|
});
|
|
}
|
|
};
|
|
};
|
|
|
|
exports.fetch = function(dbot) {
|
|
return pages(dbot);
|
|
};
|