Advertisement
Guest User

Untitled

a guest
Oct 28th, 2016
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //service
  2.  
  3. (function(){
  4.     'use strict';
  5.  
  6.     angular.module('postData')
  7.         .factory('postData', postData);
  8.  
  9.  
  10.  
  11.     function postData ($resource) {
  12.         var result = $resource('http://localhost:8000/api/subAccount/?format=json');
  13.         return result;
  14.     }
  15.  
  16. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement