blob: e69f8ea4855b34f43132557e518769782e51bb67 [file] [log] [blame]
'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' });
})