We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39529c8 commit 119fc72Copy full SHA for 119fc72
1 file changed
controller/router.go
@@ -11,7 +11,7 @@ import (
11
12
func router(runtime runtime.Runtime) http.Handler {
13
router := httprouter.New()
14
- router.POST("/flow/execute", newRequestHandlerWrapper(runtime, handler.ExecuteFlowHandler))
+ // router.POST("/flow/execute", newRequestHandlerWrapper(runtime, handler.ExecuteFlowHandler))
15
router.POST("/flow/:id/forward", newRequestHandlerWrapper(runtime, handler.PartialExecuteFlowHandler))
16
router.POST("/flow/:id/pause", newRequestHandlerWrapper(runtime, handler.PauseFlowHandler))
17
router.POST("/flow/:id/resume", newRequestHandlerWrapper(runtime, handler.ResumeFlowHandler))
0 commit comments