Skip to content

Commit

Permalink
rename more register2 to register
Browse files Browse the repository at this point in the history
  • Loading branch information
auumgn committed Jan 22, 2025
1 parent 01ee21d commit 71b9b76
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/app/app-routing.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const routes: Routes = [
path: ApplicationRoutes.register,
canActivateChild: [LanguageGuard, RegisterGuard],
loadChildren: () =>
import('./register2/register.module').then((m) => m.Register2Module),
import('./register2/register.module').then((m) => m.RegisterModule),
},
{
path: ApplicationRoutes.search,
Expand Down Expand Up @@ -151,7 +151,7 @@ const routes: Routes = [
matcher: routerReactivation,
canActivateChild: [LanguageGuard, RegisterGuard],
loadChildren: () =>
import('./register2/register.module').then((m) => m.Register2Module),
import('./register2/register.module').then((m) => m.RegisterModule),
},
{
path: ApplicationRoutes.selfService,
Expand Down
4 changes: 2 additions & 2 deletions src/app/register2/register-routing.module.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { NgModule } from '@angular/core'
import { RouterModule, Routes } from '@angular/router'
import { Register2Component } from './pages/register/register2.component'
import { RegisterComponent } from './pages/register/register.component'

const routes: Routes = [
{
path: '',
component: Register2Component,
component: RegisterComponent,
},
]

Expand Down
6 changes: 3 additions & 3 deletions src/app/register2/register.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import { WarningMessageModule } from '../cdk/warning-message/warning-message.mod
import { BackendErrorComponent } from './components/backend-error/backend-error.component'
import { FormAntiRobotsComponent } from './components/form-anti-robots/form-anti-robots.component'
import { FormPersonalAdditionalEmailsComponent } from './components/form-personal-additional-emails/form-personal-additional-emails.component'
import { Register2Component } from './pages/register/register2.component'
import { RegisterComponent } from './pages/register/register.component'
import { StepCComponent } from './components/step-c/step-c.component'
import { FormCurrentEmploymentComponent } from './components/form-current-employment/form-current-employment.component'
import { MatLegacyAutocompleteModule as MatAutocompleteModule } from '@angular/material/legacy-autocomplete'
Expand All @@ -54,7 +54,7 @@ import { AlertMessageModule } from '../cdk/alert-message/alert-message.module'
FormPersonalAdditionalEmailsComponent,
FormAntiRobotsComponent,
BackendErrorComponent,
Register2Component,
RegisterComponent,
FormCurrentEmploymentComponent,
],
imports: [
Expand Down Expand Up @@ -84,4 +84,4 @@ import { AlertMessageModule } from '../cdk/alert-message/alert-message.module'
SharedModule,
],
})
export class Register2Module {}
export class RegisterModule {}

0 comments on commit 71b9b76

Please sign in to comment.