improve document model and propagate changes. This include the change of document fixtures to better reflect what the api is effectively returning
import Ember from 'ember';
export default Ember.Route.extend({
model(params) {
return this.store.findRecord('document', params.document_id);
}
});