|
|
@ -5,6 +5,9 @@ import { RouterModule, Routes } from '@angular/router';
|
|
|
|
|
|
|
|
|
|
|
|
import { OmbiComponent } from './ombi/ombi.component'
|
|
|
|
import { OmbiComponent } from './ombi/ombi.component'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import { SettingsMenuComponent } from './settingsmenu.component';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import { MenuModule, InputSwitchModule, InputTextModule } from 'primeng/primeng';
|
|
|
|
|
|
|
|
|
|
|
|
const routes: Routes = [
|
|
|
|
const routes: Routes = [
|
|
|
|
{ path: 'Settings/Ombi', component: OmbiComponent }
|
|
|
|
{ path: 'Settings/Ombi', component: OmbiComponent }
|
|
|
@ -15,15 +18,20 @@ const routes: Routes = [
|
|
|
|
CommonModule,
|
|
|
|
CommonModule,
|
|
|
|
FormsModule,
|
|
|
|
FormsModule,
|
|
|
|
RouterModule.forChild(routes),
|
|
|
|
RouterModule.forChild(routes),
|
|
|
|
|
|
|
|
MenuModule,
|
|
|
|
|
|
|
|
InputSwitchModule,
|
|
|
|
|
|
|
|
InputTextModule,
|
|
|
|
|
|
|
|
|
|
|
|
],
|
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
declarations: [
|
|
|
|
|
|
|
|
SettingsMenuComponent,
|
|
|
|
OmbiComponent
|
|
|
|
OmbiComponent
|
|
|
|
],
|
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
exports: [
|
|
|
|
RouterModule
|
|
|
|
RouterModule
|
|
|
|
],
|
|
|
|
],
|
|
|
|
providers: [
|
|
|
|
providers: [
|
|
|
|
]
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
})
|
|
|
|
export class SettingsModule { }
|
|
|
|
export class SettingsModule { }
|