Skip to content

Commit 71b9b76

Browse files
committed
rename more register2 to register
1 parent 01ee21d commit 71b9b76

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/app/app-routing.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ const routes: Routes = [
9191
path: ApplicationRoutes.register,
9292
canActivateChild: [LanguageGuard, RegisterGuard],
9393
loadChildren: () =>
94-
import('./register2/register.module').then((m) => m.Register2Module),
94+
import('./register2/register.module').then((m) => m.RegisterModule),
9595
},
9696
{
9797
path: ApplicationRoutes.search,
@@ -151,7 +151,7 @@ const routes: Routes = [
151151
matcher: routerReactivation,
152152
canActivateChild: [LanguageGuard, RegisterGuard],
153153
loadChildren: () =>
154-
import('./register2/register.module').then((m) => m.Register2Module),
154+
import('./register2/register.module').then((m) => m.RegisterModule),
155155
},
156156
{
157157
path: ApplicationRoutes.selfService,

src/app/register2/register-routing.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import { NgModule } from '@angular/core'
22
import { RouterModule, Routes } from '@angular/router'
3-
import { Register2Component } from './pages/register/register2.component'
3+
import { RegisterComponent } from './pages/register/register.component'
44

55
const routes: Routes = [
66
{
77
path: '',
8-
component: Register2Component,
8+
component: RegisterComponent,
99
},
1010
]
1111

src/app/register2/register.module.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import { WarningMessageModule } from '../cdk/warning-message/warning-message.mod
3030
import { BackendErrorComponent } from './components/backend-error/backend-error.component'
3131
import { FormAntiRobotsComponent } from './components/form-anti-robots/form-anti-robots.component'
3232
import { FormPersonalAdditionalEmailsComponent } from './components/form-personal-additional-emails/form-personal-additional-emails.component'
33-
import { Register2Component } from './pages/register/register2.component'
33+
import { RegisterComponent } from './pages/register/register.component'
3434
import { StepCComponent } from './components/step-c/step-c.component'
3535
import { FormCurrentEmploymentComponent } from './components/form-current-employment/form-current-employment.component'
3636
import { MatLegacyAutocompleteModule as MatAutocompleteModule } from '@angular/material/legacy-autocomplete'
@@ -54,7 +54,7 @@ import { AlertMessageModule } from '../cdk/alert-message/alert-message.module'
5454
FormPersonalAdditionalEmailsComponent,
5555
FormAntiRobotsComponent,
5656
BackendErrorComponent,
57-
Register2Component,
57+
RegisterComponent,
5858
FormCurrentEmploymentComponent,
5959
],
6060
imports: [
@@ -84,4 +84,4 @@ import { AlertMessageModule } from '../cdk/alert-message/alert-message.module'
8484
SharedModule,
8585
],
8686
})
87-
export class Register2Module {}
87+
export class RegisterModule {}

0 commit comments

Comments
 (0)