Assign image keyname and pubkey at vnf level
[ccsdk/apps.git] / sdnr / wireless-transport / code-Carbon-SR1 / ux / onapDcae / onapDcae-module / src / main / resources / onapDcae / onapDcae.controller.js
1 /*
2  * Copyright (c) 2017 highstreet technologies GmbH and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 define(['app/onapDcae/onapDcae.module',
10   'app/onapDcae/onapDcae.services'],
11   function (onapDcaeApp) {
12
13     onapDcaeApp.register.controller('onapDcaeCtrl', ['uiGridConstants', '$uibModal', '$scope', '$rootScope', '$window', '$timeout', '$onapDcae', '$mwtnLog',
14       function (uiGridConstants, $uibModal, $scope, $rootScope, $window, $timeout, $onapDcae, $mwtnLog) {
15
16         var COMPONENT = 'onapDcaeCtrl';
17         $mwtnLog.info({ component: COMPONENT, message: 'onapDcaeCtrl started!' });
18
19         $rootScope.section_logo = 'src/app/onapDcae/images/onapDcae.png'; // Add your topbar logo location here such as 'assets/images/logo_topology.gif'
20
21       }]);
22
23   });