SHARE
TWEET
Untitled
a guest
Dec 16th, 2014
12
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- appServices.factory('ChunksFactory', ['$resource', function($resource) {
- var baseUrl = "http://192.168.1.10:5000/api/v1/";
- var actionUrl = baseUrl + "chunks/";
- return $resource(actionUrl + ":id", {id: "@id"},
- {
- 'getAll': {
- method: 'GET',
- isArray:true
- },
- 'update': {
- method: 'PUT'
- },
- 'assignToPatient': {
- 'method': 'PUT',
- 'url': actionUrl + ":id/assign-to-patient",
- responseType: 'json'
- },
- 'reset': {
- 'method': 'PUT',
- 'url': actionUrl + ":id/reset",
- responseType: 'json'
- },
- });
- }]);
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy.

