Merge pull request #39 from navi-ppl/TP-55555/kafka-fix

TP-5555 | remove trailing slash
This commit is contained in:
Aman Singh
2024-10-28 16:43:13 +05:30
committed by GitHub

View File

@@ -11,6 +11,6 @@ func ExceptionRouter(r *gin.Engine, dep *dependencies.Dependencies) {
exceptionHandler := handler.NewExceptionHandler(dep.Service.ExceptionService)
exceptionRouterGroup := r.Group("/api")
{
exceptionRouterGroup.POST("/:projectId/envelope/", exceptionHandler.CatchErrors)
exceptionRouterGroup.POST("/:projectId/envelope", exceptionHandler.CatchErrors)
}
}