'use strinct'; var Product = require('./model'); module.exports.all = function (req, res, next) { Product.find({}, res.languageProjection).then(function (ps) { res.send(ps); }) }