Fix an installation deduplication bug

This commit is contained in:
Fosco Marotto
2016-03-02 14:14:12 -08:00
parent c7503fc654
commit bfafcd4e87
3 changed files with 33 additions and 6 deletions

View File

@@ -85,10 +85,7 @@ export class ClassesRouter extends PromiseRouter {
}
handleUpdate(req) {
return rest.update(req.config, req.auth, req.params.className, req.params.objectId, req.body)
.then((response) => {
return {response: response};
});
return rest.update(req.config, req.auth, req.params.className, req.params.objectId, req.body);
}
handleDelete(req) {