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