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

16 lines
419 B
JavaScript
Raw Permalink Normal View History

2016-02-29 00:49:18 -04:30
(function(){
'use strict';
angular
.module('app.section')
.factory('sections', sections)
.value('matriculaSeleccionada',{});
sections.$inject = ['$resource','$rootScope'];
function sections($resource, $rootScope){
return $resource('http://'+$rootScope.domainUrl+'/sections/:id', null,
{
'update': {method:'PUT'}
});
};
})();