GET /:id - Return a given entity
({ params }, res)
| 29 | |
| 30 | /** GET /:id - Return a given entity */ |
| 31 | read({ params }, res) { |
| 32 | res.json(req.facet); |
| 33 | }, |
| 34 | |
| 35 | /** PUT /:id - Update a given entity */ |
| 36 | update({ facet, body }, res) { |
nothing calls this directly
no outgoing calls
no test coverage detected