algotech / ultisnips-javascript

JavaScript snippets for vim
4 stars 4 forks source link

Angular Service #6

Closed stocarul closed 9 years ago

stocarul commented 9 years ago
var phonecatServices = angular.module('phonecatServices', ['ngResource']);

phonecatServices.factory('Phone', ['$resource',
  function($resource){
    return $resource('phones/:phoneId.json', {}, {
      query: {method:'GET', params:{phoneId:'phones'}, isArray:true}
    });
  }]);