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
Showing only changes of commit b8f05cb266 - Show all commits

View file

@ -43,7 +43,7 @@ func (h *Handler) PostMembres(c echo.Context) error {
} }
default: default:
response.StatusCode = http.StatusBadRequest 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) return c.JSON(response.StatusCode, response)
} }