Merge pull request 'Identifier formats json et csv permis lors d'insertion' (#44) from fix/identifier-support-formats-insertion into main

Reviewed-on: #44
This commit is contained in:
Victor Lacasse-Beaudoin 2024-01-05 14:51:02 -05:00
commit f448d409ee

View file

@ -43,7 +43,7 @@ func (h *Handler) PostMembres(c echo.Context) error {
}
default:
response.StatusCode = http.StatusBadRequest
response.Message = "Invalid Content-Type"
response.Message = "Invalid Content-Type: Please use application/json or text/csv"
return c.JSON(response.StatusCode, response)
}