Skip to content

Instantly share code, notes, and snippets.

@tgriesser
Created June 18, 2014 17:09
Show Gist options
  • Save tgriesser/bc882947d1b2eab54d71 to your computer and use it in GitHub Desktop.
Save tgriesser/bc882947d1b2eab54d71 to your computer and use it in GitHub Desktop.
bookshelf.Model.find = function(id, options) {
var model = new this();
model.set(this.idAttribute, id);
return model.fetch(options);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment