kongadmin
Version:
Kong admin GUI
35 lines (30 loc) • 1.17 kB
JavaScript
(function() {
'use strict';
angular.module('frontend.connections', [
]);
// Module configuration
angular.module('frontend.connections')
.config([
'$stateProvider',
function config($stateProvider) {
$stateProvider
.state('connections', {
url: '/connections',
parent : 'frontend',
data : {
access : 0,
pageName : "Connections",
pageDescription : "Create connections to Kong Nodes and select the one to use by clicking on the respective star icon.",
prefix : '<i class="mdi mdi-cast-connected"></i>'
},
views: {
'content@': {
templateUrl: 'js/app/connections/index.html',
controller: 'ConnectionsController'
},
}
})
}
])
;
}());