From b07297cf318a8fdfaf550dd552de8017db3050a6 Mon Sep 17 00:00:00 2001 From: Tine Date: Thu, 16 May 2024 22:18:56 +0200 Subject: [PATCH] fix: removed route by mistake --- pkg/server/routes.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/server/routes.go b/pkg/server/routes.go index 165f6a6..2183566 100644 --- a/pkg/server/routes.go +++ b/pkg/server/routes.go @@ -103,6 +103,7 @@ func Routes( apiv1 := e.Group("/api/v1") apiv1.Use(h.Authenticated) apiv1.GET("/workers/connect", h.ApiV1WorkersConnectGET) + apiv1.POST("/checks/:id/history", h.ApiV1ChecksHistoryPOST) // Error handler e.HTTPErrorHandler = func(err error, c echo.Context) {