| Age | Commit message (Collapse) | Author |
|
This allows the transformation of the $http request in both directions,
headers, caching, and timeout.
|
|
Perform call `angular.uppercase` on all given action methods.
Closes #1403
|
|
Default resource params can now be calculated at runtime if defined
via a function.
|
|
Having a $resource defined as:
var R = $resource('/Path', {}, {
get: {method: 'GET', params: {objId: '1'}},
perform: {method: 'GET'}
});
was causing both actions to call the same URI (if called in this order):
R.get({}); // => /Path?objId=1
R.perform({}); // => /Path?objId=1
|
|
Close #1212
when a param value was 0 (or false) it was ignored and removed from url.
after this fix that only happens if the value is undefined or null.
|
|
- $resource should handle multiple params with same name
- ignore slashes of undefined parameters
- fix default parameters issue, mentioned in #875
Closes #875
Closes #782
|
|
Closes #736
|
|
Properly serialize data into request body instead of url.
Closes #887
|
|
|