(req, res)
| 562 | }; |
| 563 | |
| 564 | const handleUserPictureUpload = async (req, res) => { |
| 565 | if (req.body.type === "application") { |
| 566 | return postApplicationUserPicture(req, res); |
| 567 | } |
| 568 | return postUserPicture(req, res); |
| 569 | }; |
| 570 | |
| 571 | const postApplicationUserPicture = async (req, res) => { |
| 572 | const { file } = req; |
nothing calls this directly
no test coverage detected