UI: Remove Wizard (#19220)

* Remove UI Wizard temporarily [GH-19000]
This commit is contained in:
Chelsea Shaw
2023-02-16 16:44:33 -06:00
committed by GitHub
parent b3bc654249
commit 63e6150f54
45 changed files with 37 additions and 310 deletions

View File

@@ -9,17 +9,10 @@ const SHOW_ROUTE = 'vault.cluster.secrets.backend.show';
export default class DatabaseRoleEdit extends Component {
@service router;
@service flashMessages;
@service wizard;
@service store;
constructor() {
super(...arguments);
if (
this.wizard.featureState === 'displayConnection' ||
this.wizard.featureState === 'displayRoleDatabase'
) {
this.wizard.transitionFeatureMachine(this.wizard.featureState, 'CONTINUE', 'database');
}
if (this.args.initialKey) {
this.args.model.database = [this.args.initialKey];
}