github.com/hernad/nomad@v1.6.112/ui/app/controllers/jobs/job/deployments.js (about)

     1  /**
     2   * Copyright (c) HashiCorp, Inc.
     3   * SPDX-License-Identifier: MPL-2.0
     4   */
     5  
     6  import Controller from '@ember/controller';
     7  import WithNamespaceResetting from 'nomad-ui/mixins/with-namespace-resetting';
     8  import { alias } from '@ember/object/computed';
     9  import classic from 'ember-classic-decorator';
    10  
    11  @classic
    12  export default class DeploymentsController extends Controller.extend(
    13    WithNamespaceResetting
    14  ) {
    15    @alias('model') job;
    16  }