Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
CloWM UI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Computational Metagenomics
CloWM
CloWM UI
Merge requests
!102
Resolve "Add UI for parameter translation layer"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Add UI for parameter translation layer"
feature/105-add-ui-for-parameter-translation-layer
into
main
Overview
1
Commits
14
Pipelines
0
Changes
16
Merged
Daniel Göbel
requested to merge
feature/105-add-ui-for-parameter-translation-layer
into
main
1 year ago
Overview
1
Commits
14
Pipelines
0
Changes
16
Expand
Closes
#105 (closed)
0
0
Merge request reports
Viewing commit
c13b0a31
Prev
Next
Show latest version
16 files
+
58
−
131
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
16
Search (e.g. *.vue) (Ctrl+P)
Verified
c13b0a31
Load instance specific default parameters from parameter extension
· c13b0a31
Daniel Göbel
authored
1 year ago
#105
src/client/workflow/models/ParameterExtension
_Input
.ts
→
src/client/workflow/models/ParameterExtension.ts
+
15
−
0
Options
/* generated using openapi-typescript-codegen -- do no edit */
/* generated using openapi-typescript-codegen -- do no
t
edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import
type
{
ResourcePath_Input
}
from
'
./ResourcePath_Input
'
;
export
type
ParameterExtension_Input
=
{
export
type
ParameterExtension
=
{
/**
* The inner dictionary contains the display name as key and the parameter value as value. The outer dictionary has the parameter name as key.
*/
mapping
?:
Record
<
string
,
Record
<
string
,
(
ResourcePath_Input
|
string
|
number
)
>>
;
mapping
?:
Record
<
string
,
Record
<
string
,
(
string
|
number
)
>>
;
/**
* Dictionary with parameter name as key and default value as value
*/
defaults
?:
Record
<
string
,
(
ResourcePath_Input
|
string
|
number
|
boolean
)
>
;
defaults
?:
Record
<
string
,
(
string
|
number
|
boolean
)
>
;
};
Loading