mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 15:29:42 +02:00
7 lines
234 B
JavaScript
7 lines
234 B
JavaScript
angular.module('portainer.rest')
|
|
.factory('Status', ['$resource', 'STATUS_ENDPOINT', function StatusFactory($resource, STATUS_ENDPOINT) {
|
|
'use strict';
|
|
return $resource(STATUS_ENDPOINT, {}, {
|
|
get: { method: 'GET' }
|
|
});
|
|
}]);
|