UNPKG

generator-aristos

Version:

create aristos cms fast with yeoman generator.

15 lines (13 loc) 326 B
const updateStats = require("../../../AristosStuff/AristosSiteStats/AristosSiteStats") .updateStats; module.exports = app => { app.use(function(req, res, next) { if ( typeof req.user === "undefined" || req.user.admin !== 1 ) { updateStats(1, "frontEndViews"); } next(); }); };