blob: e69f8ea4855b34f43132557e518769782e51bb67 [file] [log] [blame]
Matteo Scandolo4b3bf7f2016-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){
Matteo Scandolo2ef0cd72016-04-12 11:59:29 -070010 return $resource('/api/tenant/cord/volt/:volt_id/', { volt_id: '@id' });
Matteo Scandolo4b3bf7f2016-04-12 11:38:40 -070011})