open-nomad/ui/app/controllers/jobs/job/deployments.js
2023-04-10 15:36:59 +00:00

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;
}