Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x | import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { RouterModule, Routes } from '@angular/router';
import { BsDropdownModule } from 'ngx-bootstrap/dropdown';
import { PopoverModule } from 'ngx-bootstrap/popover';
import { TabsModule } from 'ngx-bootstrap/tabs';
import { ActionLabels, URLVerbs } from '../../shared/constants/app.constants';
import { SharedModule } from '../../shared/shared.module';
import { LoginComponent } from './login/login.component';
import { RoleDetailsComponent } from './role-details/role-details.component';
import { RoleFormComponent } from './role-form/role-form.component';
import { RoleListComponent } from './role-list/role-list.component';
import { SsoNotFoundComponent } from './sso/sso-not-found/sso-not-found.component';
import { UserFormComponent } from './user-form/user-form.component';
import { UserListComponent } from './user-list/user-list.component';
import { UserTabsComponent } from './user-tabs/user-tabs.component';
@NgModule({
imports: [
BsDropdownModule.forRoot(),
CommonModule,
FormsModule,
PopoverModule.forRoot(),
ReactiveFormsModule,
SharedModule,
TabsModule.forRoot(),
RouterModule
],
declarations: [
LoginComponent,
RoleDetailsComponent,
RoleFormComponent,
RoleListComponent,
SsoNotFoundComponent,
UserTabsComponent,
UserListComponent,
UserFormComponent
]
})
export class AuthModule {}
const routes: Routes = [
{ path: '', redirectTo: 'users', pathMatch: 'full' },
{
path: 'users',
data: { breadcrumbs: 'Users' },
children: [
{ path: '', component: UserListComponent },
{
path: URLVerbs.CREATE,
component: UserFormComponent,
data: { breadcrumbs: ActionLabels.CREATE }
},
{
path: `${URLVerbs.EDIT}/:username`,
component: UserFormComponent,
data: { breadcrumbs: ActionLabels.EDIT }
}
]
},
{
path: 'roles',
data: { breadcrumbs: 'Roles' },
children: [
{ path: '', component: RoleListComponent },
{
path: URLVerbs.CREATE,
component: RoleFormComponent,
data: { breadcrumbs: ActionLabels.CREATE }
},
{
path: `${URLVerbs.EDIT}/:name`,
component: RoleFormComponent,
data: { breadcrumbs: ActionLabels.EDIT }
}
]
}
];
@NgModule({
imports: [AuthModule, RouterModule.forChild(routes)]
})
export class RoutedAuthModule {}
|