application.js.es6 165 B

1234567
  1. import { findCustomWizard } from '../models/custom-wizard';
  2. export default Ember.Route.extend({
  3. model(params) {
  4. return findCustomWizard(params.name);
  5. }
  6. });