drives page

This commit is contained in:
Aaron Greenspan
2021-01-06 20:24:19 -07:00
committed by Aiden McClelland
parent 31318687bf
commit 0cd2a32b24
16 changed files with 173 additions and 5 deletions

View File

@@ -33,6 +33,11 @@ const routes: Routes = [
canActivateChild: [AuthGuard],
loadChildren: () => import('./pages/apps-routes/apps-routing.module').then(m => m.AppsRoutingModule),
},
{
path: 'drives',
canActivate: [AuthGuard],
loadChildren: () => import('./pages/server-routes/external-drives/external-drives.module').then( m => m.ExternalDrivesPageModule),
},
]
@NgModule({