Skip to content

Commit 119fc72

Browse files
author
swarvanu.sengupta
committed
Remove execute route from router
Signed-off-by: swarvanu.sengupta <2555-swarvanu.sengupta@users.noreply.source.golabs.io>
1 parent 39529c8 commit 119fc72

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

controller/router.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111

1212
func router(runtime runtime.Runtime) http.Handler {
1313
router := httprouter.New()
14-
router.POST("/flow/execute", newRequestHandlerWrapper(runtime, handler.ExecuteFlowHandler))
14+
// router.POST("/flow/execute", newRequestHandlerWrapper(runtime, handler.ExecuteFlowHandler))
1515
router.POST("/flow/:id/forward", newRequestHandlerWrapper(runtime, handler.PartialExecuteFlowHandler))
1616
router.POST("/flow/:id/pause", newRequestHandlerWrapper(runtime, handler.PauseFlowHandler))
1717
router.POST("/flow/:id/resume", newRequestHandlerWrapper(runtime, handler.ResumeFlowHandler))

0 commit comments

Comments
 (0)