Files
MASA/app/partials/students/student.services.js

16 lines
420 B
JavaScript
Raw Permalink Normal View History

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