removed weedkeeper traces from home.module

This commit is contained in:
flo 2025-01-02 03:52:12 +01:00
parent 25f0188dec
commit 1edbc354bb

View File

@ -22,41 +22,12 @@ const routes: Routes = [
path: "settings", path: "settings",
canActivate: [AuthGuard], canActivate: [AuthGuard],
component: SettingsComponent component: SettingsComponent
}, }/*,
{
path: "dashboard",
loadChildren: () =>
import('../../feature/dashboard/dashboard.module').then((m) => m.DashboardModule)
},
{
path: "plant",
canActivate: [AuthGuard],
loadChildren: () =>
import('../../feature/plant/plant.module').then((m) => m.PlantModule)
},
{
path: "device",
canActivate: [AuthGuard],
loadChildren: () =>
import('../../feature/device/device.module').then((m) => m.DeviceModule)
},
{
path: "location",
canActivate: [AuthGuard],
loadChildren: () =>
import('../../feature/location/location.module').then((m) => m.LocationModule)
},
{
path: "admin",
canActivate: [AuthGuard],
loadChildren: () =>
import('../../feature/admin/admin.module').then((m) => m.AdminModule)
},
{ {
path: '**', path: '**',
redirectTo: 'dashboard', redirectTo: 'dashboard',
pathMatch: 'full' pathMatch: 'full'
} }*/
], ],
}, },
]; ];