open-nomad/ui/app/controllers/jobs/job/deployments.js
2022-01-20 09:54:56 -05:00

12 lines
352 B
JavaScript

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