From ed2f5d47c8dd18b790b69d96e3ee5e19a3ccdd94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=20Jurmanovi=C4=87?= Date: Sun, 20 Feb 2022 10:52:23 +0100 Subject: [PATCH] fixed transactions check endpoint --- pkg/controllers/transactions.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/controllers/transactions.go b/pkg/controllers/transactions.go index 7448b7c..77e285a 100644 --- a/pkg/controllers/transactions.go +++ b/pkg/controllers/transactions.go @@ -38,7 +38,7 @@ func NewTransactionController(as *services.TransactionService, s *gin.RouterGrou checkGroup := s.Group("check") { - checkGroup.GET("check", wc.Check) + checkGroup.GET("", wc.Check) } return wc