X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=webapp-frontend%2Fsrc%2Fapp%2Fpolicy%2Fpolicy.module.ts;h=d4a4b1e61a3147346e8a104b342bca4ffdc22113;hb=042a087cf3eea5e6f941ee9add6e1c50cb106e91;hp=f7a41dc88f459bb0c6f45d012824cb01d3d3acb3;hpb=c43690c45b3f4d08d013ec488b83dea793cca646;p=portal%2Fnonrtric-controlpanel.git diff --git a/webapp-frontend/src/app/policy/policy.module.ts b/webapp-frontend/src/app/policy/policy.module.ts index f7a41dc..d4a4b1e 100644 --- a/webapp-frontend/src/app/policy/policy.module.ts +++ b/webapp-frontend/src/app/policy/policy.module.ts @@ -1,9 +1,28 @@ +// - +// ========================LICENSE_START================================= +// O-RAN-SC +// %% +// Copyright (C) 2021: Nordix Foundation +// %% +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ========================LICENSE_END=================================== +// + import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { MatTableModule } from '@angular/material/table'; import { PolicyCardComponent } from './policy-card/policy-card.component'; import { PolicyControlComponent } from './policy-control.component'; -import { NoTypePolicyInstanceDialogComponent } from './no-type-policy-instance-dialog/no-type-policy-instance-dialog.component'; import { PolicyInstanceDialogComponent } from './policy-instance-dialog/policy-instance-dialog.component'; import { PolicyInstanceComponent } from './policy-instance/policy-instance.component'; import { FormsModule, ReactiveFormsModule } from '@angular/forms'; @@ -31,6 +50,9 @@ import { MatToolbarModule } from '@angular/material/toolbar'; import { MaterialDesignFrameworkModule } from 'angular6-json-schema-form'; import { FlexLayoutModule } from '@angular/flex-layout'; import { Routes, RouterModule } from '@angular/router'; +import { RicSelectorComponent } from './ric-selector/ric-selector.component'; +import { TypedPolicyEditorComponent } from './typed-policy-editor/typed-policy-editor.component'; +import { NoTypePolicyEditorComponent } from './no-type-policy-editor/no-type-policy-editor.component'; const routes:Routes = [ {path: 'policy', component: PolicyControlComponent} @@ -38,11 +60,13 @@ const routes:Routes = [ @NgModule({ declarations: [ - NoTypePolicyInstanceDialogComponent, PolicyCardComponent, PolicyControlComponent, PolicyInstanceComponent, PolicyInstanceDialogComponent, + RicSelectorComponent, + NoTypePolicyEditorComponent, + TypedPolicyEditorComponent, ], imports: [ CommonModule, @@ -77,6 +101,6 @@ const routes:Routes = [ exports: [ PolicyCardComponent, PolicyControlComponent - ], + ] }) export class PolicyModule { }