(req, res, next)
| 179 | } catch (err) { |
| 180 | logger.error(`Error while updating the User Data: ${err}`); |
| 181 | return res.boom.badImplementation(INTERNAL_SERVER_ERROR); |
| 182 | } |
| 183 | }; |
| 184 | |
| 185 | /** |
| 186 | * Retrieve users status based on task status |
| 187 | * @param req {Object} - Express request object |
| 188 | * @param res {Object} - Express response object |
| 189 | */ |
| 190 |
nothing calls this directly
no test coverage detected