Create Catalogue page
[releng.git] / utils / test / reporting / pages / app / scripts / controllers / admin.controller.js
1 'use strict';
2
3 /**
4  * @ngdoc function
5  * @name opnfvdashBoardAngularApp.controller:AdminController
6  * @description
7  * # TableController
8  * Controller of the opnfvdashBoardAngularApp
9  */
10 angular.module('opnfvApp')
11     .controller('AdminController', ['$scope', '$state', '$stateParams', 'TableFactory', function($scope, $state, $stateParams, TableFactory) {
12
13         init();
14         $scope.showSelectValue = 0;
15         $scope.scenarioList = ["os_nosdn_kvm_noha", "os_nosdn_kvm_no", "os_nosdn_kvm_"];
16
17         function init() {}
18
19
20
21
22
23
24
25
26     }]);