(req, res)
| 56 | } |
| 57 | |
| 58 | updateLink(req, res) { |
| 59 | this._tryProcess(function (req, res) { |
| 60 | var sid = req.params.id; |
| 61 | this.storage.update(sid, "links", req.body); |
| 62 | res.send({action: actions.updated}); |
| 63 | }, req, res); |
| 64 | |
| 65 | } |
| 66 | |
| 67 | deleteLink(req, res) { |
| 68 | this._tryProcess(function (req, res) { |
nothing calls this directly
no test coverage detected