2018-09-25 16:28:26 +00:00
|
|
|
import { computed } from '@ember/object';
|
|
|
|
import Route from '@ember/routing/route';
|
2018-07-19 01:59:04 +00:00
|
|
|
import ClusterRoute from 'vault/mixins/cluster-route';
|
|
|
|
import ModelBoundaryRoute from 'vault/mixins/model-boundary-route';
|
|
|
|
|
2018-09-25 16:28:26 +00:00
|
|
|
export default Route.extend(ModelBoundaryRoute, ClusterRoute, {
|
|
|
|
modelTypes: computed(function() {
|
|
|
|
return ['capabilities', 'control-group', 'identity/group', 'identity/group-alias', 'identity/alias'];
|
|
|
|
}),
|
2018-07-19 01:59:04 +00:00
|
|
|
model() {
|
|
|
|
return {};
|
|
|
|
},
|
|
|
|
});
|