mirror of
https://github.com/lukevella/rallly.git
synced 2025-05-24 22:36:22 +02:00
Improved inline edit feature
This commit is contained in:
parent
10c035e359
commit
0eeb4866f4
10 changed files with 65 additions and 21 deletions
|
@ -28,5 +28,7 @@ angular.module('rallly', ['ui.router','ngResource','ngFx'])
|
|||
});
|
||||
})
|
||||
.factory('Participant', function($resource){
|
||||
return $resource('/api/event/:id/participant/:pid', { id: '@_id', pid : '@pid'});
|
||||
return $resource('/api/event/:id/participant/:pid', { id: '@_id', pid : '@pid'}, {
|
||||
'update' : { method : 'PUT' }
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue