yarn-app.js 254 B

12345678910
  1. import Ember from 'ember';
  2. export default Ember.Route.extend({
  3. model(param) {
  4. return Ember.RSVP.hash({
  5. app: this.store.find('yarnApp', param.app_id),
  6. attempts: this.store.query('yarnAppAttempt', { appId: param.app_id})
  7. });
  8. }
  9. });