Matteo Scandolo | d5f3d05 | 2016-05-02 15:29:37 -0700 | [diff] [blame] | 1 | (function() { |
2 | 'use strict'; | ||||
3 | |||||
4 | angular.module('xos.helpers') | ||||
5 | /** | ||||
6 | * @ngdoc service | ||||
7 | * @name xos.helpers.Deployments | ||||
8 | * @description Angular resource to fetch /api/core/deployments/:id/ | ||||
9 | **/ | ||||
10 | .service('Deployments', function($resource){ | ||||
11 | return $resource('/api/core/deployments/:id/', { id: '@id' }, { | ||||
12 | update: { method: 'PUT' } | ||||
13 | }); | ||||
14 | }) | ||||
15 | })(); |