82fac469b71cd21865eb14032fedf9d57fba8fb8
[nonrtric.git] / sdnc-a1-controller / oam / SdncReports / SdncReportsApi / src / main / webapp / js / app.js
1 /*
2 * ============LICENSE_START=======================================================
3 * ONAP : SDNC-FEATURES
4 * ================================================================================
5 * Copyright 2018 TechMahindra
6 *=================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 *     http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
19 */
20
21 // app.js This is first entry point for the application
22 // =============================================================================
23 var myApp = angular.module('myApp', ['ngRoute', 'ngSanitize', 'ngCsv', 'angularUtils.directives.dirPagination', 'angular-growl','ng-ip-address']);
24
25 // configuring our routes 
26 // =============================================================================
27 myApp.config(['$routeProvider', function($routeProvider) {
28
29         //Called when user select pre validation test from the UI
30     $routeProvider.
31     when('/testValidation', {
32         templateUrl: 'form-validationTest.html',
33         controller: 'TestController'
34     }).
35     when('/', {
36         templateUrl: 'form-validationTest.html',
37         controller: 'TestController'
38     }).
39   //Called when user select view test report from the UI
40     when('/testReports', {
41         templateUrl: 'form-viewReport.html',
42         controller: 'ReportController'
43     }).
44     otherwise({
45         redirectTo: 'form-validationTest.html'
46     });
47 }]);