25 lines
922 B
JavaScript

Ember.Application.initializer({
name: 'load-steps',
after: 'store',
initialize: function(container, application) {
var store = container.lookup('store:main');
var steps = {
"steps": [
{ id: 0, name: 'welcome', humanName: "Welcome to the Vault Interactive Tutorial!"},
{ id: 1, name: 'steps', humanName: "Step 1: Overview"},
{ id: 2, name: 'init', humanName: "Step 2: Initialize your Vault"},
{ id: 3, name: 'unseal', humanName: "Step 3: Unsealing your Vault"},
{ id: 4, name: 'auth', humanName: "Step 4: Authorize your requests"},
{ id: 5, name: 'secrets', humanName: "Step 6: Read and write secrets"},
{ id: 6, name: 'seal', humanName: "Step 7: Seal your Vault"},
{ id: 7, name: 'finish', humanName: "You're finished!"},
]
};
application.register('model:step', Demo.Step);
store.pushPayload('step', steps);
},
});