12 lines
325 B
JavaScript
Raw Normal View History

import Route from '@ember/routing/route';
export default Route.extend({
// maintains backwards compatibility with legacy code
// TODO: [DSS-6122] refactor so this may not be required
controllerName: 'flows',
setupController: function(controller, model) {
this.controller.set('currentName', model.name);
}
});