feat: adds list editor

feat: adds list editor
This commit is contained in:
2022-12-23 15:15:11 +01:00
parent 08dcfd179b
commit 74e7d8c9e7
36 changed files with 389 additions and 182 deletions

View File

@@ -8,6 +8,18 @@ const routes: Routes = [
redirectTo: 'home',
pathMatch: 'full'
},
{
path: 'list',
redirectTo: 'followings/list',
},
{
path: 'matrix',
redirectTo: 'followings/matrix',
},
{
path: 'table',
redirectTo: 'followings/table',
},
{
path: 'home',
loadChildren: () => import('./home/home.module').then(m => m.HomeModule),
@@ -22,20 +34,16 @@ const routes: Routes = [
canActivate: [AuthGuard],
},
{
path: 'list',
loadChildren: () => import('./followings-list/followings-list.module').then(m => m.FollowingsListModule),
path: 'lists',
loadChildren: () => import('./lists/lists.module').then(m => m.ListsModule),
canActivate: [AuthGuard],
},
{
path: 'matrix',
loadChildren: () => import('./followings-matrix/followings-matrix.module').then(m => m.FollowingsMatrixModule),
canActivate: [AuthGuard],
},
{
path: 'table',
loadChildren: () => import('./followings-table/followings-table.module').then(m => m.FollowingsTableModule),
path: 'followings',
loadChildren: () => import('./followings/followings.module').then(m => m.FollowingsModule),
canActivate: [AuthGuard],
},
];
@NgModule({