NonRT-RIC A1 Northbound API
[nonrtric.git] / sdnc-a1-controller / oam / configbackuprestore / vnfconfigbackupservice / 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','ds.objectDiff']);
24
25 myApp.config(['growlProvider',function(growlProvider) {
26     growlProvider.globalDisableCloseButton(false);
27 }]);
28
29
30 // configuring our routes 
31 // =============================================================================
32 myApp.config(['$routeProvider', function($routeProvider) {
33
34         //Called when user select pre validation test from the UI
35     $routeProvider.
36     when('/testReportsById', {
37         templateUrl: 'static/views/form-viewReportById.html',
38         controller: 'ReportController'
39     }).
40     when('/', {
41         templateUrl: 'static/views/form-viewReport.html',
42         controller: 'ReportController'
43     }).
44   //Called when user select view test report from the UI
45     when('/testReports', {
46         templateUrl: 'static/views/form-viewReport.html',
47         controller: 'ReportController'
48     }).
49     when('/deviceConfig', {
50         templateUrl: 'static/views/form-backupConfig.html',
51         controller: 'BackupConfigCtrl'
52     }).
53     when('/applyConfig', {
54         templateUrl: 'static/views/form-applyConfig.jsp',
55         controller: 'ApplyConfigCtrl'
56     }).
57     when('/compareConfig', {
58         templateUrl: 'static/views/form-compareConfig.html',
59         controller: 'CompareConfigCtrl'
60     }).
61     otherwise({
62         redirectTo: 'static/views/form-viewReport.html'
63     });
64 }]);
65
66
67 myApp.constant('CERTIFICATION_API_BASE', 'http://myapp.production.com/');
68 myApp.constant('VNF_API_BASE', 'http://myapp.production.com/');