open-vault/ui/app/routes/vault/cluster/settings/seal.js

12 lines
259 B
JavaScript
Raw Normal View History

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