Advertisement
Guest User

Untitled

a guest
Feb 5th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. 'use strict';
  2.  
  3. import _ from 'lodash';
  4. let model = require('./product.model');
  5.  
  6. // Gets a list of Products
  7. export function index(req, res) {
  8.  
  9. model.retrieveProducts.then(
  10. function(data) {
  11. res.send(data);
  12. }
  13. );
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement