mirror of https://github.com/portainer/portainer
7 lines
246 B
JavaScript
7 lines
246 B
JavaScript
|
angular.module('portainer.rest')
|
||
|
.factory('Templates', ['$resource', 'TEMPLATES_ENDPOINT', function TemplatesFactory($resource, TEMPLATES_ENDPOINT) {
|
||
|
return $resource(TEMPLATES_ENDPOINT, {}, {
|
||
|
get: {method: 'GET', isArray: true}
|
||
|
});
|
||
|
}]);
|