feat: Implement parameters list + more template list columns (#2359)

* feat: Implement parameters list

- Allow more columns on template list

* Hide param list by default for now
This commit is contained in:
Steven Masley
2022-06-15 18:21:01 -05:00
committed by GitHub
parent f5e558c4ec
commit 75205f5978
8 changed files with 186 additions and 30 deletions

View File

@ -14,8 +14,9 @@ import (
type ParameterScope string
const (
ParameterTemplate ParameterScope = "template"
ParameterWorkspace ParameterScope = "workspace"
ParameterTemplate ParameterScope = "template"
ParameterWorkspace ParameterScope = "workspace"
ParameterScopeImportJob ParameterScope = "import_job"
)
type ParameterSourceScheme string