mirror of
https://github.com/onepanelio/onepanel.git
synced 2025-11-02 19:04:00 +08:00
fix: added back function that went missing.
This commit is contained in:
@@ -663,6 +663,13 @@ func getWorkflowTemplateColumns(alias string, destination string, extraColumns .
|
||||
return formatColumnSelect(columns, alias, destination, extraColumns...)
|
||||
}
|
||||
|
||||
// returns all of the columns for workflow template versions modified by alias, destination.
|
||||
// see formatColumnSelect
|
||||
func getWorkflowTemplateVersionColumns(alias string, destination string, extraColumns ...string) []string {
|
||||
columns := []string{"id", "uid", "created_at", "version", "is_latest", "manifest"}
|
||||
return formatColumnSelect(columns, alias, destination, extraColumns...)
|
||||
}
|
||||
|
||||
// returns all of the columns for workflowExecution modified by alias, destination.
|
||||
// see formatColumnSelect
|
||||
func getWorkflowExecutionColumns(alias string, destination string, extraColumns ...string) []string {
|
||||
|
||||
Reference in New Issue
Block a user