TP-5555 | remove trailing slash

This commit is contained in:
varnit goyal
2024-10-28 16:42:21 +05:30
parent 81f4ae42d4
commit 8ba4ffba01

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)
}
}