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.

feed.dataaccess.js 426B

123456789101112131415161718192021
  1. /**
  2. * Created by robin on 12/12/16.
  3. */
  4. (function () {
  5. 'use strict';
  6. angular.module('appSdk')
  7. .factory('feedDataAccess', ['luRequest',
  8. function (luRequest) {
  9. var DataAccess = {};
  10. DataAccess.get = function(luBusyGroups)
  11. {
  12. return luRequest.get('/api/feed', null, luBusyGroups);
  13. };
  14. return DataAccess;
  15. }]);
  16. })();