Files
MASA/app/partials/report/report.services.js

16 lines
397 B
JavaScript
Raw Normal View History

2016-02-29 00:49:18 -04:30
(function(){
'use strict';
angular
.module('app.reports')
.factory('ReportJson', ReportJson)
.value('id',{})
ReportJson.$inject = ['$resource','$rootScope'];
function ReportJson($resource, $rootScope){
return $resource('http://'+$rootScope.domainUrl+'/api/reports/:id');
//var json="data/data.json";
//return $resource(json);
};
})();