17 lines
430 B
JavaScript
17 lines
430 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import Controller from '@ember/controller';
|
|
import WithNamespaceResetting from 'nomad-ui/mixins/with-namespace-resetting';
|
|
import { alias } from '@ember/object/computed';
|
|
import classic from 'ember-classic-decorator';
|
|
|
|
@classic
|
|
export default class DeploymentsController extends Controller.extend(
|
|
WithNamespaceResetting
|
|
) {
|
|
@alias('model') job;
|
|
}
|