open-nomad/ui/app/routes/allocations/allocation/task/logs.js
Michael Lange fc581163d6 First pass at the logs page
Just verifying the log code works
2017-11-21 11:22:42 -08:00

11 lines
206 B
JavaScript

import Ember from 'ember';
const { Route } = Ember;
export default Route.extend({
model() {
const task = this._super(...arguments);
return task.get('allocation.node').then(() => task);
},
});