summaryrefslogtreecommitdiffstats
path: root/controllers/index.js
blob: 4b9174d9cca59a7d7b27096247b7d1d05008f51d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
var os = require("os");
var config = require('../config');
module.exports = {
	getIndex: function(req, res) {
		res.json({
			status: 'online', 
			uptime: process.uptime() | 0, 
			server: os.hostname(),
			updated: config.lastRefresh ? config.lastRefresh.toUTCString() : 'Unknown'
		});
	}
}