22443221ec3115ab49fdc3c967953ab7b4f607dc
[releng.git] / utils / test / reporting / pages / app / scripts / factory / table.factory.js
1 'use strict';
2
3 /**
4  * get data factory
5  */
6 angular.module('opnfvApp')
7     .factory('TableFactory', function ($resource, $rootScope) {
8         // var baseUrl = base_Url;
9
10         return {
11             getFilter: function () {
12                 return $resource(baseUrl + '/', {}, {
13                     'post': {
14                         method: 'POST',
15
16                     }
17                 });
18             }
19         };
20     });