aboutsummaryrefslogtreecommitdiff
path: root/src/app/app-routing.module.ts
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2021-03-21 18:13:41 +0200
committerSyndamia <kamen.d.mladenov@protonmail.com>2021-03-21 18:13:41 +0200
commit578e3408089747fa1cedf59409baf96f27053d21 (patch)
treedf4baff2e9a0af952f1c2c06ce476488966fcb19 /src/app/app-routing.module.ts
parent9a5b8b3d2d036dc9883ce434cb66d7453afa01ab (diff)
downloadDevHive-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.ts2
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 }