mirror of
https://github.com/portainer/portainer.git
synced 2025-07-30 10:49:40 +02:00
Added events endpoint.
This commit is contained in:
parent
d6c524f960
commit
32a4703a53
9 changed files with 49 additions and 8 deletions
|
@ -1,7 +1,7 @@
|
|||
angular.module('footer', [])
|
||||
.controller('FooterController', ['$scope', 'Settings', function($scope, Settings) {
|
||||
.controller('FooterController', ['$scope', 'Settings', 'Docker', function($scope, Settings, Docker) {
|
||||
$scope.template = 'app/components/footer/statusbar.html';
|
||||
|
||||
$scope.uiVersion = Settings.uiVersion;
|
||||
$scope.apiVersion = Settings.version;
|
||||
Docker.get({}, function(d) { $scope.apiVersion = d.ApiVersion; });
|
||||
}]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue