From fcaa14ee9a000725168f0ce99db8d59ee905b885 Mon Sep 17 00:00:00 2001 From: Victor Lacasse-Beaudoin Date: Wed, 14 Feb 2024 17:03:24 -0500 Subject: [PATCH] =?UTF-8?q?fix:=20reconsid=C3=A9rer=20`Not=20Found`=20sur?= =?UTF-8?q?=20`GetMembre`=20comme=20non-trouv=C3=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apihandler/apihandler.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apihandler/apihandler.go b/apihandler/apihandler.go index fe10e77..e7363d4 100644 --- a/apihandler/apihandler.go +++ b/apihandler/apihandler.go @@ -81,7 +81,7 @@ func (a *APIHandler) ScanGET(c echo.Context) error { membre, err := a.BottinAPIClient.GetMembre(membreID) if err != nil { switch err.Error() { - case "Ce numéro étudiant ne correspond à aucunE membre": + case "Ce numéro étudiant ne correspond à aucunE membre", "Not Found": r.Message = fmt.Sprintf("%s n'est pas membre de l'AGECEM", membreID) r.StatusCode = http.StatusNotFound case "Veuillez fournir un numéro étudiant à rechercher": @@ -115,7 +115,7 @@ func (a *APIHandler) ScanPOST(c echo.Context) error { membre, err := a.BottinAPIClient.GetMembre(membreID) if err != nil { switch err.Error() { - case "Ce numéro étudiant ne correspond à aucunE membre": + case "Ce numéro étudiant ne correspond à aucunE membre", "Not Found": r.Message = fmt.Sprintf("👎 %s n'est pas membre de l'AGECEM", membreID) r.Error = err.Error() r.StatusCode = http.StatusNotFound -- 2.45.2