blob: 5bd440529f2b451919470e43deaa5a2c1c40d0e1 [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2015-2020 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
********************************************************************************/
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { MDMDetailComponent } from './components/mdm-detail/mdm-detail.component';
import { MDMDetailViewComponent } from './components/mdm-detail-view/mdm-detail-view.component';
import { MDMDescriptiveDataComponent } from './components/mdm-detail-descriptive-data/mdm-detail-descriptive-data.component';
import { SensorComponent } from './components/sensor/sensor.component';
const detailRoutes: Routes = [
{ path: '', component: MDMDetailComponent, children: [
{ path: 'general', component: MDMDetailViewComponent },
{ path: 'sensors', component: SensorComponent },
{ path: ':context', component: MDMDescriptiveDataComponent },
{ path: '', redirectTo: 'general', pathMatch: 'full' },
]}
];
@NgModule({
imports: [
RouterModule.forChild(detailRoutes)
],
exports: [
RouterModule
]
})
export class MDMDetailRoutingModule {}