summaryrefslogtreecommitdiffstats
path: root/src/app/app.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/app.module.ts')
-rw-r--r--src/app/app.module.ts7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/app/app.module.ts b/src/app/app.module.ts
index 4824351..df9bf07 100644
--- a/src/app/app.module.ts
+++ b/src/app/app.module.ts
@@ -16,8 +16,6 @@ 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.
-
-ECOMP is a trademark and service mark of AT&T Intellectual Property.
============LICENSE_END============================================
*/
@@ -36,16 +34,17 @@ import {RouterModule} from '@angular/router';
import {TestComponent} from './test/test.component';
import {AboutUsComponent} from './about-us/aboutus.component';
import {NgProgressModule} from 'ngx-progressbar';
+import {LoginGuardService} from './vnfs/LoginGuardService/Login-guard-service';
@NgModule({
declarations: [AppComponent, TestComponent, AboutUsComponent],
imports: [BrowserModule, FormsModule, HomeModule, SharedModule.forRoot(),
NgbModule.forRoot(), NoopAnimationsModule, AppRoutingModule, SimpleNotificationsModule, NgProgressModule],
exports: [RouterModule],
- providers: [{provide: LocationStrategy, useClass: HashLocationStrategy}],
+ providers: [{provide: LocationStrategy, useClass: HashLocationStrategy}, LoginGuardService],
bootstrap: [AppComponent]
})
export class AppModule {
-} \ No newline at end of file
+}