2023-09-26 16:32:27 +02:00
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {RouterModule} from '@angular/router';
|
|
|
|
import {PluginsComponent} from "./plugins.component";
|
|
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
RouterModule.forChild([
|
2023-10-17 08:20:16 +02:00
|
|
|
{ path: '', component: PluginsComponent},
|
|
|
|
{ path: ':templateCode', component: PluginsComponent, data: {templateView:true}}
|
2023-09-26 16:32:27 +02:00
|
|
|
])
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class PluginsRoutingModule { }
|