mirror of
https://github.com/arnaucube/blockchainIDsystem.git
synced 2026-02-08 11:36:42 +01:00
peers propagation working fine, started to implement serverCA
This commit is contained in:
14
serverCA/webapp/views/navbar.js
Executable file
14
serverCA/webapp/views/navbar.js
Executable file
@@ -0,0 +1,14 @@
|
||||
'use strict';
|
||||
|
||||
angular.module('app.navbar', ['ngRoute'])
|
||||
|
||||
.config(['$routeProvider', function($routeProvider) {
|
||||
$routeProvider.when('/navbar', {
|
||||
templateUrl: 'views/navbar/navbar.html',
|
||||
controller: 'NavbarCtrl'
|
||||
});
|
||||
}])
|
||||
|
||||
.controller('NavbarCtrl', function($scope, $http) {
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user