(req)
| 129 | } |
| 130 | |
| 131 | handleUpdate(req) { |
| 132 | const where = { objectId: req.params.objectId }; |
| 133 | return rest.update( |
| 134 | req.config, |
| 135 | req.auth, |
| 136 | this.className(req), |
| 137 | where, |
| 138 | req.body || {}, |
| 139 | req.info.clientSDK, |
| 140 | req.info.context |
| 141 | ); |
| 142 | } |
| 143 | |
| 144 | handleDelete(req) { |
| 145 | return rest |
no test coverage detected