removed audit_log

This commit is contained in:
azivner
2017-11-24 20:51:44 -05:00
parent f799d3076b
commit f433b30089
17 changed files with 14 additions and 127 deletions

View File

@@ -6,9 +6,7 @@ const auth = require('../services/auth');
const utils = require('../services/utils');
router.get('', auth.checkAuth, async (req, res, next) => {
res.render('index', {
browserId: utils.randomString(12)
});
res.render('index', {});
});
module.exports = router;