server/bo_client/app/routes/doc.js
author nowmad@nowmads-macbook-pro.local
Mon, 30 Nov 2015 17:49:12 +0100
changeset 35 9148b2653eb5
parent 4 f55970e41793
child 28 b0b56e0f8c7f
permissions -rw-r--r--
update the route with new names

import Ember from 'ember';

export default Ember.Route.extend({
  model(params) {
    return this.store.findRecord('document', params.doc_id);
  },
});