(function() { "use strict"; angular.module("raz") .service("autoAssignedGoalSetsApi", ["createApi", function (createApi) { var api = createApi('/api/auto-assigned'); function getAutoAssignedStudentsForGoalSet(categoryId) { return api.get('/' + categoryId); } return { getAutoAssignedStudentsForGoalSet: getAutoAssignedStudentsForGoalSet }; }]); })();