Identifier formats json et csv permis lors d'insertion #44

Merged
vlbeaudoin merged 1 commit from fix/identifier-support-formats-insertion into main 2024-01-05 14:51:03 -05:00

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)
}