1bd6a69067
Closes #7197 #7199 Note: Test coverage is limited to adapter and serializer unit tests. All acceptance tests have been stubbed and all features have been manually tested end-to-end. This represents Phase 1 of #6993 which is the core workflow of CSI in the UI. It includes a couple new pages for viewing all external volumes as well as the allocations associated with each. It also updates existing volume related views on job and allocation pages to handle both Host Volumes and CSI Volumes.
10 lines
236 B
JavaScript
10 lines
236 B
JavaScript
import Watchable from './watchable';
|
|
import WithNamespaceIDs from 'nomad-ui/mixins/with-namespace-ids';
|
|
|
|
export default Watchable.extend(WithNamespaceIDs, {
|
|
queryParamsToAttrs: {
|
|
type: 'type',
|
|
plugin_id: 'plugin.id',
|
|
},
|
|
});
|