diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-03-21 18:13:41 +0200 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-03-21 18:13:41 +0200 |
| commit | 578e3408089747fa1cedf59409baf96f27053d21 (patch) | |
| tree | df4baff2e9a0af952f1c2c06ce476488966fcb19 /src/app/app-routing.module.ts | |
| parent | 9a5b8b3d2d036dc9883ce434cb66d7453afa01ab (diff) | |
| download | DevHive-Angular-578e3408089747fa1cedf59409baf96f27053d21.tar DevHive-Angular-578e3408089747fa1cedf59409baf96f27053d21.tar.gz DevHive-Angular-578e3408089747fa1cedf59409baf96f27053d21.zip | |
Removed comment page component
Diffstat (limited to 'src/app/app-routing.module.ts')
| -rw-r--r-- | src/app/app-routing.module.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index 0d83079..4367db7 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -8,7 +8,6 @@ import { ProfileSettingsComponent } from './components/profile-settings/profile- import { NotFoundComponent } from './components/not-found/not-found.component'; import { PostPageComponent } from './components/post-page/post-page.component'; import {AdminPanelPageComponent} from './components/admin-panel-page/admin-panel-page.component'; -import {CommentPageComponent} from './components/comment-page/comment-page.component'; const routes: Routes = [ { path: '', component: FeedComponent }, @@ -17,7 +16,6 @@ const routes: Routes = [ { path: 'profile/:username', component: ProfileComponent }, { path: 'profile/:username/settings', component: ProfileSettingsComponent }, { path: 'post/:id', component: PostPageComponent }, - { path: 'comment/:id', component: CommentPageComponent }, { path: 'admin-panel', component: AdminPanelPageComponent }, { path: 'not-found', component: NotFoundComponent }, { path: '**', component: NotFoundComponent } |
