mirror of
https://github.com/kemko/nomad.git
synced 2026-01-08 19:35:41 +03:00
This rethinks namespaces as a filter on list pages rather than a global setting. The biggest net-new feature here is being able to select All (*) to list all jobs or CSI volumes across namespaces.
10 lines
222 B
JavaScript
10 lines
222 B
JavaScript
import Controller from '@ember/controller';
|
|
|
|
export default class RunController extends Controller {
|
|
onSubmit(id, namespace) {
|
|
this.transitionToRoute('jobs.job', id, {
|
|
queryParams: { namespace },
|
|
});
|
|
}
|
|
}
|