You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

GroupsDataAccess.js 392B

123456789101112131415
  1. (function()
  2. {
  3. angular.module('appSdk')
  4. .factory('GroupsDataAccess', ['$q', 'RequestDataAccess', function ($q, RequestDataAccess) {
  5. var DataAccess = {};
  6. DataAccess.getAll = function(promise)
  7. {
  8. return RequestDataAccess.get("/api/group/getgroups", null, promise);
  9. };
  10. return DataAccess;
  11. }]);
  12. })();