1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-24 07:49:41 +02:00

Update settings with endpoint

This commit is contained in:
Michael Crosby 2013-06-10 03:59:57 -09:00
parent 880966f3ba
commit 528565afc8
4 changed files with 9 additions and 2 deletions

View file

@ -53,8 +53,9 @@ angular.module('dockerui.services', ['ngResource'])
get: {method: 'GET'}
});
})
.factory('Settings', function() {
.factory('Settings', function(DOCKER_ENDPOINT) {
return {
displayAll: false
displayAll: false,
endpoint: DOCKER_ENDPOINT
};
});