open-nomad/ui/app/routes/jobs/index.js

14 lines
407 B
JavaScript
Raw Normal View History

import Route from '@ember/routing/route';
import { collect } from '@ember/object/computed';
import { watchAll } from 'nomad-ui/utils/properties/watch';
import WithWatchers from 'nomad-ui/mixins/with-watchers';
export default Route.extend(WithWatchers, {
startWatchers(controller) {
2019-03-26 07:46:44 +00:00
controller.set('modelWatch', this.watch.perform());
},
watch: watchAll('job'),
watchers: collect('watch'),
});