Skip to content

Instantly share code, notes, and snippets.

@kyroskoh
Forked from IgorMinar/scratch5
Created September 25, 2015 02:49
Show Gist options
  • Save kyroskoh/d134ee7546f3b6479863 to your computer and use it in GitHub Desktop.
Save kyroskoh/d134ee7546f3b6479863 to your computer and use it in GitHub Desktop.
/// bootstrap code
var myApp = angular.module('myApp', []);
//// resource def
var pops;
pops = function($resource) {
return $resource('/pops/:id', {}, {
index: {
method: 'GET',
isArray: true
},
destroy: {
method: 'DELETE'
}
});
};
myApp.factory('Pops', ['$resource', pops]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment