Migrate wizard pages to dedicated app

This commit is contained in:
Bill Thornton
2025-03-31 17:32:54 -04:00
parent dbb0941fef
commit 64b79ec65c
18 changed files with 127 additions and 125 deletions
+1 -43
View File
@@ -1,4 +1,4 @@
import { LegacyRoute } from '../../../../components/router/LegacyRoute';
import type { LegacyRoute } from 'components/router/LegacyRoute';
export const LEGACY_PUBLIC_ROUTES: LegacyRoute[] = [
{
@@ -35,47 +35,5 @@ export const LEGACY_PUBLIC_ROUTES: LegacyRoute[] = [
controller: 'session/resetPassword/index',
view: 'session/resetPassword/index.html'
}
},
{
path: 'wizardremoteaccess',
pageProps: {
controller: 'wizard/remote/index',
view: 'wizard/remote/index.html'
}
},
{
path: 'wizardfinish',
pageProps: {
controller: 'wizard/finish/index',
view: 'wizard/finish/index.html'
}
},
{
path: 'wizardlibrary',
pageProps: {
controller: 'wizard/library',
view: 'wizard/library.html'
}
},
{
path: 'wizardsettings',
pageProps: {
controller: 'wizard/settings/index',
view: 'wizard/settings/index.html'
}
},
{
path: 'wizardstart',
pageProps: {
controller: 'wizard/start/index',
view: 'wizard/start/index.html'
}
},
{
path: 'wizarduser',
pageProps: {
controller: 'wizard/user/index',
view: 'wizard/user/index.html'
}
}
];