Skip to content

Instantly share code, notes, and snippets.

@sjcotto
Last active August 29, 2015 14:08
Show Gist options
  • Save sjcotto/6f05493d0571eab455e1 to your computer and use it in GitHub Desktop.
Save sjcotto/6f05493d0571eab455e1 to your computer and use it in GitHub Desktop.
/*
* @autor santiago
*/
var model = kona.model.open('User');
var post = function(req) { // POST User to KONA Backend
var item = req.body;
model.insert(item);
return item.get("_id").toString(); //return the id of the created object
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment