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