mirror of
https://github.com/portainer/portainer.git
synced 2025-07-22 23:09:41 +02:00
6 lines
244 B
JavaScript
6 lines
244 B
JavaScript
angular.module('portainer.rest')
|
|
.factory('Template', ['$resource', 'TEMPLATES_ENDPOINT', function TemplateFactory($resource, TEMPLATES_ENDPOINT) {
|
|
return $resource(TEMPLATES_ENDPOINT, {}, {
|
|
get: {method: 'GET', isArray: true}
|
|
});
|
|
}]);
|