controller.js 197 B

123456789
  1. 'use strinct';
  2. var Product = require('./model');
  3. module.exports.all = function (req, res, next) {
  4. Product.find({}, res.languageProjection).then(function (ps) {
  5. res.send(ps);
  6. })
  7. }