I was looking at AngularJs Resource documentation and it states that default actions for accessing API are: {'get': {method:'GET'}, 'save': {method:'POST'}, 'query': {method:'GET', isArray:true}, 'remove': {method:'DELETE'}, 'delete': {method:'DELETE'} };
This is a bit different from Rails RESTful API where we have index,show,new,create,edit,update and discard. Is there an "automatic" way to bind these two without writing the path manually? Thanks!
ps. why remove and delete, where's put for update?