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