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
!107
Resolve "Deleting a value from a parameter string input sets the value to true"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Deleting a value from a parameter string input sets the value to true"
bugfix/110-fix-string-input
into
main
Overview
0
Commits
1
Pipelines
2
Changes
12
Merged
Daniel Göbel
requested to merge
bugfix/110-fix-string-input
into
main
11 months ago
Overview
0
Commits
1
Pipelines
2
Changes
12
Expand
Closes
#110 (closed)
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
c7af4242
1 commit,
11 months ago
12 files
+
258
−
233
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
12
Search (e.g. *.vue) (Ctrl+P)
src/client/workflow/services/WorkflowVersionService.ts
+
3
−
3
Options
@@ -81,23 +81,23 @@ export class WorkflowVersionService {
* Update the status of a workflow version.
*
* Permission `workflow:update_status`
* @param gitCommitHash Git commit git_commit_hash of specific version.
* @param wid ID of a workflow
* @param gitCommitHash Git commit git_commit_hash of specific version.
* @param requestBody
* @returns WorkflowVersion Successful Response
* @throws ApiError
*/
public
static
workflowVersionUpdateWorkflowVersionStatus
(
gitCommitHash
:
string
,
wid
:
string
,
gitCommitHash
:
string
,
requestBody
:
WorkflowVersionStatus
,
):
CancelablePromise
<
WorkflowVersion
>
{
return
__request
(
OpenAPI
,
{
method
:
'
PATCH
'
,
url
:
'
/workflows/{wid}/versions/{git_commit_hash}/status
'
,
path
:
{
'
git_commit_hash
'
:
gitCommitHash
,
'
wid
'
:
wid
,
'
git_commit_hash
'
:
gitCommitHash
,
},
body
:
requestBody
,
mediaType
:
'
application/json
'
,
Loading