open-nomad/ui/app/routes/jobs/run.js

35 lines
847 B
JavaScript
Raw Normal View History

2018-08-14 20:06:26 +00:00
import Route from '@ember/routing/route';
import { inject as service } from '@ember/service';
import classic from 'ember-classic-decorator';
2018-08-14 20:06:26 +00:00
@classic
export default class RunRoute extends Route {
@service can;
@service store;
@service system;
2018-08-14 20:06:26 +00:00
beforeModel(transition) {
2021-12-28 16:08:12 +00:00
if (
this.can.cannot('run job', null, {
namespace: transition.to.queryParams.namespace,
})
) {
this.transitionTo('jobs');
}
}
2018-08-15 00:29:51 +00:00
model() {
// When jobs are created with a namespace attribute, it is verified against
// available namespaces to prevent redirecting to a non-existent namespace.
return this.store.findAll('namespace').then(() => {
return this.store.createRecord('job');
2018-08-15 00:29:51 +00:00
});
}
2018-08-15 00:29:51 +00:00
resetController(controller, isExiting) {
if (isExiting) {
2019-03-26 07:46:44 +00:00
controller.model.deleteRecord();
2018-08-15 00:29:51 +00:00
}
}
}