This repository was archived by the owner on Jun 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 299
/
Copy pathapp.routes.ts
73 lines (65 loc) · 2.69 KB
/
app.routes.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import {RouterModule, Routes} from "@angular/router";
import {ModuleWithProviders} from "@angular/core";
import {AboutComponent, HomeComponent, HomeLandingComponent} from "./public/home.component";
import {SecureHomeComponent} from "./secure/landing/securehome.component";
import {MyProfileComponent} from "./secure/profile/myprofile.component";
import {JwtComponent} from "./secure/jwttokens/jwt.component";
import {UseractivityComponent} from "./secure/useractivity/useractivity.component";
import {LoginComponent} from "./public/auth/login/login.component";
import {RegisterComponent} from "./public/auth/register/registration.component";
import {ForgotPassword2Component, ForgotPasswordStep1Component} from "./public/auth/forgot/forgotPassword.component";
import {LogoutComponent, RegistrationConfirmationComponent} from "./public/auth/confirm/confirmRegistration.component";
import {ResendCodeComponent} from "./public/auth/resend/resendCode.component";
import {NewPasswordComponent} from "./public/auth/newpassword/newpassword.component";
const homeRoutes: Routes = [
{
path: '',
redirectTo: '/home',
pathMatch: 'full'
},
{
path: 'home',
component: HomeComponent,
children: [
{path: 'about', component: AboutComponent},
{path: 'login', component: LoginComponent},
{path: 'register', component: RegisterComponent},
{path: 'confirmRegistration/:username', component: RegistrationConfirmationComponent},
{path: 'resendCode', component: ResendCodeComponent},
{path: 'forgotPassword/:email', component: ForgotPassword2Component},
{path: 'forgotPassword', component: ForgotPasswordStep1Component},
{path: 'newPassword', component: NewPasswordComponent},
{path: '', component: HomeLandingComponent}
]
},
];
const secureHomeRoutes: Routes = [
{
path: '',
redirectTo: '/securehome',
pathMatch: 'full'
},
{
path: 'securehome', component: SecureHomeComponent, children: [
{path: 'logout', component: LogoutComponent},
{path: 'jwttokens', component: JwtComponent},
{path: 'myprofile', component: MyProfileComponent},
{path: 'useractivity', component: UseractivityComponent},
{path: '', component: MyProfileComponent}]
}
];
const routes: Routes = [
{
path: '',
children: [
...homeRoutes,
...secureHomeRoutes,
{
path: '',
component: HomeComponent
}
]
},
];
export const appRoutingProviders: any[] = [];
export const routing: ModuleWithProviders = RouterModule.forRoot(routes);