Skip to content

Commit

Permalink
Improve user profile page (#119)
Browse files Browse the repository at this point in the history
Co-authored-by: GODrums <[email protected]>
  • Loading branch information
FelixTJDietrich and GODrums authored Oct 18, 2024
1 parent 85c5abb commit 9c72fcc
Show file tree
Hide file tree
Showing 24 changed files with 677 additions and 430 deletions.
4 changes: 2 additions & 2 deletions webapp/src/app/app.routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { AboutComponent } from '@app/about/about.component';
import { HomeComponent } from '@app/home/home.component';
import { AdminComponent } from '@app/admin/admin.component';
import { AdminGuard } from '@app/core/security/admin.guard';
import { ProfileComponent } from './home/profile/profile.component';
import { UserProfileComponent } from '@app/user/user-profile.component';

export const routes: Routes = [
{ path: '', component: HomeComponent },
Expand All @@ -13,5 +13,5 @@ export const routes: Routes = [
component: AdminComponent,
canActivate: [AdminGuard]
},
{ path: 'user/:id', component: ProfileComponent }
{ path: 'user/:id', component: UserProfileComponent }
];
48 changes: 0 additions & 48 deletions webapp/src/app/core/issue-card/issue-card.component.html

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

134 changes: 0 additions & 134 deletions webapp/src/app/home/profile/profile.component.html

This file was deleted.

Loading

0 comments on commit 9c72fcc

Please sign in to comment.