blob: fc1cda2ea70ff43c16d153d6fc1f8f1d10d109a4 [file] [log] [blame]
Matteo Scandoloc7987cd2016-04-12 11:38:40 -07001'use strict';
2
3/*
4 * OLT devices aggregate a set of subscriber connections
5
6 */
7
8angular.module('xos.helpers')
9.service('vOLT-Collection', function($resource){
10 return $resource('/api/tenant/cord/volt/:volt_id/', { volt_id: '@id'});
11})