From c7ac48d373fef0e6f37aa66012ebfa8055de28c9 Mon Sep 17 00:00:00 2001 From: Nicolas CARON Date: Tue, 17 Dec 2024 10:33:17 +0100 Subject: [PATCH] add namespace parcoursmob_bookings on diags handlers --- handlers/application/diags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handlers/application/diags.go b/handlers/application/diags.go index 3970988..ead9838 100644 --- a/handlers/application/diags.go +++ b/handlers/application/diags.go @@ -60,7 +60,7 @@ func (h *ApplicationHandler) DiagsHome(w http.ResponseWriter, r *http.Request) { func (h *ApplicationHandler) DiagsHistory(w http.ResponseWriter, r *http.Request) { resp, err := h.services.GRPC.Diags.GetDiags(context.TODO(), &diags.GetDiagsRequest{ - Namespaces: []string{"parcoursmob_diagnostiques"}, + Namespaces: []string{"parcoursmob_beneficiaries", "parcoursmob_diagnostiques", "parcoursmob_vehicles", "parcoursmob_bookings"}, //Maxdate: timestamppb.New(time.Now().Add(24 * time.Hour)), })