(req, res)
| 65 | } |
| 66 | |
| 67 | deleteLink(req, res) { |
| 68 | this._tryProcess(function (req, res) { |
| 69 | var sid = req.params.id; |
| 70 | this.storage.delete(sid, "links"); |
| 71 | res.send({action: actions.deleted}); |
| 72 | }, req, res); |
| 73 | |
| 74 | } |
| 75 | |
| 76 | connect(app) { |
| 77 | this._connect(app, ""); |
nothing calls this directly
no test coverage detected