fixed transactions check endpoint

This commit is contained in:
Fran Jurmanović
2022-02-20 10:52:23 +01:00
parent 341647ccd9
commit ed2f5d47c8

View File

@@ -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