Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. })();