blob: 8bac5420e85dc9c5d493afb2389c6fde06f97604 [file] [log] [blame]
(function() {
'use strict';
/*
* OLT devices aggregate a set of subscriber connections
*/
angular.module('xos.helpers')
.service('vOLT-Collection', function($resource){
return $resource('/api/tenant/cord/volt/:volt_id/', { volt_id: '@id' });
})
})();