mirror of
https://github.com/fleetbase/fleetbase.git
synced 2026-01-08 07:16:49 +00:00
- Fixed controller validation handling - Added microsoft365/graph mail driver - Improved password requirements (including breached password check) - Patched creating duplicate users by email in IAM - Patch env mapper - Vehicle/driver tracking API doesnt fire resource lifecycle events or log requests - only tracking events - Patched `<ModelCoordinatesInput />` component - Security patch on Storefront customers API - Styling updates on Storefront
20 lines
512 B
JavaScript
20 lines
512 B
JavaScript
export function initialize(owner) {
|
|
const registry = owner.lookup('service:onboarding-registry');
|
|
if (registry) {
|
|
const defaultFlow = {
|
|
id: 'default@v1',
|
|
entry: 'signup',
|
|
steps: [
|
|
{ id: 'signup', component: 'onboarding/form', next: 'verify-email' },
|
|
{ id: 'verify-email', component: 'onboarding/verify-email' },
|
|
],
|
|
};
|
|
|
|
registry.registerFlow(defaultFlow);
|
|
}
|
|
}
|
|
|
|
export default {
|
|
initialize,
|
|
};
|