github.com/blixtra/nomad@v0.7.2-0.20171221000451-da9a1d7bb050/ui/app/routes/allocations/allocation/task/logs.js (about)

     1  import Ember from 'ember';
     2  
     3  const { Route } = Ember;
     4  
     5  export default Route.extend({
     6    model() {
     7      const task = this._super(...arguments);
     8      return task.get('allocation.node').then(() => task);
     9    },
    10  });