Skip to content

Instantly share code, notes, and snippets.

@kedarmhaswade
Last active August 29, 2015 14:02
Show Gist options
  • Select an option

  • Save kedarmhaswade/bf56a182a027ad6be44d to your computer and use it in GitHub Desktop.

Select an option

Save kedarmhaswade/bf56a182a027ad6be44d to your computer and use it in GitHub Desktop.
sails controller finder ...
find: function(req, res) {
Items.find().done(function (err, val) {
if (err) {
res.send(err);
}
res.send(val);
});
},
@tarlepp
Copy link

tarlepp commented Jun 5, 2014

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment