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
Admin message
Looking for advice? Join the
Matrix channel for GitLab users in Bielefeld
!
Show more breadcrumbs
Computational Metagenomics
CloWM
CloWM UI
Merge requests
!33
Resolve "Create show Workflow Version Page"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Create show Workflow Version Page"
feature/37-create-show-workflow-version-page
into
development
Overview
0
Commits
5
Pipelines
0
Changes
4
Merged
Daniel Göbel
requested to merge
feature/37-create-show-workflow-version-page
into
development
2 years ago
Overview
0
Commits
5
Pipelines
0
Changes
4
Expand
Closes
#37 (closed)
0
0
Merge request reports
Viewing commit
bb51af2e
Prev
Next
Show latest version
4 files
+
55
−
10
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
Verified
bb51af2e
Add icon to workflow if it exists
· bb51af2e
Daniel Göbel
authored
2 years ago
#37
src/client/workflow/services/WorkflowService.ts
+
3
−
3
Options
@@ -20,20 +20,20 @@ export class WorkflowService {
*
* Permission "workflow:list" required.
* @param nameSubstring Filter workflows by a substring in their name.
* @param
filterUnpublished Filter Workflows with unpublished versi
ons. Permission '
W
orkflow:list_filter
'
required
* @param
versionStatus Which versions of the workflow to include in the resp
ons
e
. Permission '
w
orkflow:list_filter required
'. Default PUBLISHED and DEPRECATED.
* @returns WorkflowOut Successful Response
* @throws ApiError
*/
public
static
workflowListWorkflows
(
nameSubstring
?:
string
,
filterUnpublished
:
boolean
=
false
,
versionStatus
?:
Array
<
Status
>
,
):
CancelablePromise
<
Array
<
WorkflowOut
>>
{
return
__request
(
OpenAPI
,
{
method
:
'
GET
'
,
url
:
'
/workflows
'
,
query
:
{
'
name_substring
'
:
nameSubstring
,
'
filter_unpublished
'
:
filterUnpublished
,
'
version_status
'
:
versionStatus
,
},
errors
:
{
400
:
`Error decoding JWT Token`
,
Loading