Skip to content

Instantly share code, notes, and snippets.

@samdelagarza
Created April 14, 2015 02:12
Show Gist options
  • Save samdelagarza/2fa07921a4f6593dbcde to your computer and use it in GitHub Desktop.
Save samdelagarza/2fa07921a4f6593dbcde to your computer and use it in GitHub Desktop.
return Ember.RSVP.all([
this.store.find('employee'),
this.store.find('trailer', params.trailerId)
]).then(function (values) {
return {
trailer: values[0],
employees: values[1]
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment