|
|
|
@ -65,19 +65,19 @@ const routes: Routes = [
|
|
|
|
|
{ path: "token", component: TokenResetPasswordComponent },
|
|
|
|
|
{ path: "landingpage", component: LandingPageComponent },
|
|
|
|
|
{ path: "auth/cookie", component: CookieComponent },
|
|
|
|
|
{ loadChildren: "./calendar/calendar.module#CalendarModule", path: "calendar" },
|
|
|
|
|
{ loadChildren: "./discover/discover.module#DiscoverModule", path: "discover" },
|
|
|
|
|
{ loadChildren: "./issues/issues.module#IssuesModule", path: "issues" },
|
|
|
|
|
{ loadChildren: "./settings/settings.module#SettingsModule", path: "Settings" },
|
|
|
|
|
{ loadChildren: "./wizard/wizard.module#WizardModule", path: "Wizard" },
|
|
|
|
|
{ loadChildren: "./usermanagement/usermanagement.module#UserManagementModule", path: "usermanagement" },
|
|
|
|
|
{ loadChildren: "./requests/requests.module#RequestsModule", path: "requestsOld" },
|
|
|
|
|
{ loadChildren: "./requests-list/requests-list.module#RequestsListModule", path: "requests-list" },
|
|
|
|
|
{ loadChildren: "./search/search.module#SearchModule", path: "search" },
|
|
|
|
|
{ loadChildren: "./recentlyAdded/recentlyAdded.module#RecentlyAddedModule", path: "recentlyadded" },
|
|
|
|
|
{ loadChildren: "./vote/vote.module#VoteModule", path: "vote" },
|
|
|
|
|
{ loadChildren: "./media-details/media-details.module#MediaDetailsModule", path: "details" },
|
|
|
|
|
{ loadChildren: "./user-preferences/user-preferences.module#UserPreferencesModule", path: "user-preferences" },
|
|
|
|
|
{ loadChildren: () => import("./calendar/calendar.module").then(m => m.CalendarModule), path: "calendar" },
|
|
|
|
|
{ loadChildren: () => import("./discover/discover.module").then(m => m.DiscoverModule), path: "discover" },
|
|
|
|
|
{ loadChildren: () => import("./issues/issues.module").then(m => m.IssuesModule), path: "issues" },
|
|
|
|
|
{ loadChildren: () => import("./settings/settings.module").then(m => m.SettingsModule), path: "Settings" },
|
|
|
|
|
{ loadChildren: () => import("./wizard/wizard.module").then(m => m.WizardModule), path: "Wizard" },
|
|
|
|
|
{ loadChildren: () => import("./usermanagement/usermanagement.module").then(m => m.UserManagementModule), path: "usermanagement" },
|
|
|
|
|
{ loadChildren: () => import("./requests/requests.module").then(m => m.RequestsModule), path: "requestsOld" },
|
|
|
|
|
{ loadChildren: () => import("./requests-list/requests-list.module").then(m => m.RequestsListModule), path: "requests-list" },
|
|
|
|
|
{ loadChildren: () => import("./search/search.module").then(m => m.SearchModule), path: "search" },
|
|
|
|
|
{ loadChildren: () => import("./recentlyAdded/recentlyAdded.module").then(m => m.RecentlyAddedModule), path: "recentlyadded" },
|
|
|
|
|
{ loadChildren: () => import("./vote/vote.module").then(m => m.VoteModule), path: "vote" },
|
|
|
|
|
{ loadChildren: () => import("./media-details/media-details.module").then(m => m.MediaDetailsModule), path: "details" },
|
|
|
|
|
{ loadChildren: () => import("./user-preferences/user-preferences.module").then(m => m.UserPreferencesModule), path: "user-preferences" },
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
// AoT requires an exported function for factories
|
|
|
|
|