2018-09-25 16:28:26 +00:00
|
|
|
import { hash } from 'rsvp';
|
|
|
|
import Route from '@ember/routing/route';
|
2018-04-03 14:16:57 +00:00
|
|
|
|
2018-09-25 16:28:26 +00:00
|
|
|
export default Route.extend({
|
2018-04-03 14:16:57 +00:00
|
|
|
model() {
|
2018-09-25 16:28:26 +00:00
|
|
|
return hash({
|
2018-04-03 14:16:57 +00:00
|
|
|
cluster: this.modelFor('vault.cluster'),
|
|
|
|
seal: this.store.findRecord('capabilities', 'sys/seal'),
|
|
|
|
});
|
|
|
|
},
|
|
|
|
});
|