3e0618063b
Save those values in a new service, that will also watch for changes in config variables. UI is not good; this can be done later Share legal notice and privacy policy Created some containers for them
33 lines
1.2 KiB
TypeScript
33 lines
1.2 KiB
TypeScript
import { NgModule } from '@angular/core';
|
|
import { RouterModule, Routes } from '@angular/router';
|
|
|
|
import { LoginComponent } from './site/login/components/login-wrapper/login.component';
|
|
import { LoginMaskComponent } from './site/login/components/login-mask/login-mask.component';
|
|
import { LoginLegalNoticeComponent } from './site/login/components/login-legal-notice/login-legal-notice.component';
|
|
import { LoginPrivacyPolicyComponent } from './site/login/components/login-privacy-policy/login-privacy-policy.component';
|
|
|
|
/**
|
|
* Global app routing
|
|
*/
|
|
const routes: Routes = [
|
|
{
|
|
path: 'login',
|
|
component: LoginComponent,
|
|
children: [
|
|
{ path: '', component: LoginMaskComponent },
|
|
{ path: 'legalnotice', component: LoginLegalNoticeComponent },
|
|
{ path: 'privacypolicy', component: LoginPrivacyPolicyComponent }
|
|
]
|
|
},
|
|
|
|
{ path: 'projector', loadChildren: './projector-container/projector-container.module#ProjectorContainerModule' },
|
|
{ path: '', loadChildren: './site/site.module#SiteModule' },
|
|
{ path: '**', redirectTo: '' }
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [RouterModule.forRoot(routes)],
|
|
exports: [RouterModule]
|
|
})
|
|
export class AppRoutingModule {}
|