mirror of
https://github.com/kemko/nomad.git
synced 2026-01-06 02:15:43 +03:00
I’d think the codemod would handle this if it’s a requirement but apparently not, is it a bug?
17 lines
298 B
JavaScript
17 lines
298 B
JavaScript
import { inject as service } from '@ember/service';
|
|
import Controller from '@ember/controller';
|
|
|
|
export default class JobsController extends Controller {
|
|
@service system;
|
|
|
|
queryParams = [
|
|
{
|
|
jobNamespace: 'namespace',
|
|
},
|
|
];
|
|
|
|
isForbidden = false;
|
|
|
|
jobNamespace = 'default';
|
|
}
|