mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-28 02:55:55 +00:00
12 lines
325 B
JavaScript
12 lines
325 B
JavaScript
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);
|
|
}
|
|
});
|