Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
adding validate to the mustread party
  • Loading branch information
ecrupper committed Jul 18, 2022
commit 20ebb8d265ef5aa839d0e84a183c10fde61b5a95
2 changes: 1 addition & 1 deletion router/pipeline.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func PipelineHandlers(base *gin.RouterGroup) {
_pipeline.GET("/templates", perm.MustRead(), pipeline.GetTemplates)
_pipeline.POST("/compile", perm.MustWrite(), pipeline.CompilePipeline)
_pipeline.POST("/expand", perm.MustRead(), pipeline.ExpandPipeline)
_pipeline.POST("/validate", perm.MustWrite(), pipeline.ValidatePipeline)
_pipeline.POST("/validate", perm.MustRead(), pipeline.ValidatePipeline)
} // end of pipeline endpoints
} // end of pipelines endpoints
}