(req)
| 142 | } |
| 143 | |
| 144 | handleDelete(req) { |
| 145 | return rest |
| 146 | .del(req.config, req.auth, this.className(req), req.params.objectId, req.info.context) |
| 147 | .then(() => { |
| 148 | return { response: {} }; |
| 149 | }); |
| 150 | } |
| 151 | |
| 152 | static JSONFromQuery(query) { |
| 153 | const json = {}; |
no test coverage detected