open-nomad/ui/app/routes/jobs/index.js
Michael Lange a4b7b58dd5 Move the namespace query param up the route hierarchy
This makes it active on all job routes
2017-10-23 17:42:35 -07:00

12 lines
153 B
JavaScript

import Ember from 'ember';
const { Route } = Ember;
export default Route.extend({
actions: {
refreshRoute() {
return true;
},
},
});