mirror of https://github.com/portainer/portainer
15 lines
464 B
JavaScript
15 lines
464 B
JavaScript
angular.module('info', [])
|
|
.controller('InfoController', ['$scope', 'Info', 'Version', 'Settings',
|
|
function ($scope, Info, Version, Settings) {
|
|
$scope.info = {};
|
|
$scope.docker = {};
|
|
$scope.endpoint = Settings.endpoint;
|
|
|
|
Version.get({}, function (d) {
|
|
$scope.docker = d;
|
|
});
|
|
Info.get({}, function (d) {
|
|
$scope.info = d;
|
|
});
|
|
}]);
|