open-vault/ui/app/machines/replication-machine.js
madalynrose 3ff2ba463a
Wizard tests (#5328)
add integration tests for the ui tutorial
2018-10-12 14:49:06 -04:00

25 lines
573 B
JavaScript

export default {
key: 'replication',
initial: 'setup',
states: {
setup: {
on: {
ENABLEREPLICATION: 'details',
},
onEntry: [
{ type: 'routeTransition', params: ['vault.cluster.replication'] },
{ type: 'render', level: 'feature', component: 'wizard/replication-setup' },
],
},
details: {
on: {
CONTINUE: 'complete',
},
onEntry: [{ type: 'render', level: 'feature', component: 'wizard/replication-details' }],
},
complete: {
onEntry: ['completeFeature'],
},
},
};