cms/app-client/app/routes/application.js
author nowmad@nowmads-macbook-pro.local
Thu, 10 Dec 2015 16:50:53 +0100
changeset 42 7d091abf82fd
child 74 2bd46d0b2c80
permissions -rw-r--r--
add application adapter to simulate REST, using fixtures

import Ember from 'ember';

export default Ember.Route.extend({
  model() {
    return this.store.findAll('sound');
  }
});