Skip to content

Commit

Permalink
directory for routing module
Browse files Browse the repository at this point in the history
  • Loading branch information
lukavdplas committed Dec 9, 2024
1 parent 336a360 commit 4e68e1a
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion frontend/src/app/app.module.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';
import { AppRoutingModule } from './app-routing.module';
import { AppRoutingModule } from './routing/app-routing.module';

import { HomeComponent } from './home/home.component';
import { SharedModule } from './shared/shared.module';
Expand Down
File renamed without changes.
File renamed without changes.
34 changes: 17 additions & 17 deletions frontend/src/app/routes.ts → frontend/src/app/routing/routes.ts
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
import { Routes } from '@angular/router';

import { HomeComponent } from './home/home.component';
import { LoginComponent } from './user/login/login.component';
import { VerifyEmailComponent } from './user/verify-email/verify-email.component';
import { RegisterComponent } from './user/register/register.component';
import { PasswordForgottenComponent } from './user/password-forgotten/password-forgotten.component';
import { ResetPasswordComponent } from './user/reset-password/reset-password.component';
import { UserSettingsComponent } from './user/user-settings/user-settings.component';
import { LoggedOnGuard } from '@shared/logged-on.guard';
import { SourcesComponent } from './data-entry/sources/sources.component';
import { LocationFormComponent } from './data-entry/location-form/location-form.component';
import { GiftFormComponent } from './data-entry/gift-form/gift-form.component';
import { LetterFormComponent } from './data-entry/letter-form/letter-form.component';
import { AgentFormComponent } from './data-entry/agent-form/agent-form.component';
import { SourceComponent } from './data-entry/source/source.component';
import { HomeComponent } from '../home/home.component';
import { LoginComponent } from '../user/login/login.component';
import { VerifyEmailComponent } from '../user/verify-email/verify-email.component';
import { RegisterComponent } from '../user/register/register.component';
import { PasswordForgottenComponent } from '../user/password-forgotten/password-forgotten.component';
import { ResetPasswordComponent } from '../user/reset-password/reset-password.component';
import { UserSettingsComponent } from '../user/user-settings/user-settings.component';
import { LoggedOnGuard } from './logged-on.guard';
import { SourcesComponent } from '../data-entry/sources/sources.component';
import { LocationFormComponent } from '../data-entry/location-form/location-form.component';
import { GiftFormComponent } from '../data-entry/gift-form/gift-form.component';
import { LetterFormComponent } from '../data-entry/letter-form/letter-form.component';
import { AgentFormComponent } from '../data-entry/agent-form/agent-form.component';
import { SourceComponent } from '../data-entry/source/source.component';
import {
agentFormTitleResolver, giftFormTitleResolver, letterFormTitleResolver, pageTitle,
SITE_NAME, sourceFormTitleResolver, spaceFormTitleResolver
} from './titles';
import { EpisodeFormComponent } from './data-entry/episode-form/episode-form.component';
import { ContributorGuard } from '@shared/contributor.guard';
} from '../titles';
import { EpisodeFormComponent } from '../data-entry/episode-form/episode-form.component';
import { ContributorGuard } from './contributor.guard';


const routes: Routes = [
Expand Down

0 comments on commit 4e68e1a

Please sign in to comment.