mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-19 05:31:10 +02:00
* renames pki check-config decorator to check-issuers * reverts check-issuers decorator function name change
19 lines
483 B
JavaScript
19 lines
483 B
JavaScript
import Route from '@ember/routing/route';
|
|
import { inject as service } from '@ember/service';
|
|
import { withConfig } from 'pki/decorators/check-issuers';
|
|
import { hash } from 'rsvp';
|
|
|
|
@withConfig()
|
|
export default class PkiTidyRoute extends Route {
|
|
@service store;
|
|
|
|
model() {
|
|
const engine = this.modelFor('application');
|
|
return hash({
|
|
hasConfig: this.shouldPromptConfig,
|
|
engine,
|
|
autoTidyConfig: this.store.findRecord('pki/tidy', engine.id),
|
|
});
|
|
}
|
|
}
|