feat: adds list editor
feat: adds list editor
This commit is contained in:
@@ -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({
|
||||
|
||||
Reference in New Issue
Block a user