mirror of
https://github.com/fleetbase/fleetbase.git
synced 2025-12-19 22:27:22 +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
22 lines
507 B
JavaScript
22 lines
507 B
JavaScript
import Route from '@ember/routing/route';
|
|
import { inject as service } from '@ember/service';
|
|
|
|
export default class OnboardIndexRoute extends Route {
|
|
@service store;
|
|
@service('onboarding-orchestrator') orchestrator;
|
|
|
|
queryParams = {
|
|
step: { refreshModel: false },
|
|
session: { refreshModel: false },
|
|
code: { refreshModel: false },
|
|
};
|
|
|
|
beforeModel() {
|
|
this.orchestrator.start();
|
|
}
|
|
|
|
model() {
|
|
return this.store.findRecord('brand', 1);
|
|
}
|
|
}
|