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
!76
Resolve "Add rudimentary usage statistics"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Add rudimentary usage statistics"
feature/80-add-rudimentary-usage-statistics
into
development
Overview
0
Commits
1
Pipelines
2
Changes
18
Merged
Daniel Göbel
requested to merge
feature/80-add-rudimentary-usage-statistics
into
development
1 year ago
Overview
0
Commits
1
Pipelines
2
Changes
18
Expand
Closes
#80 (closed)
0
0
Merge request reports
Compare
development
development (base)
and
latest version
latest version
4048c280
1 commit,
1 year ago
18 files
+
448
−
201
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
18
Search (e.g. *.vue) (Ctrl+P)
src/client/workflow/models/AnonymizedWorkflowExecution.ts
0 → 100644
+
42
−
0
Options
/* generated using openapi-typescript-codegen -- do no edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import
type
{
WorkflowExecutionStatus
}
from
'
./WorkflowExecutionStatus
'
;
export
type
AnonymizedWorkflowExecution
=
{
/**
* ID of the workflow execution
*/
workflow_execution_id
:
string
;
/**
* Anonymized user ID of the user who ran the workflow execution
*/
pseudo_uid
:
string
;
/**
* ID of the workflow mode this workflow execution ran in
*/
workflow_mode_id
?:
(
string
|
null
);
/**
* Hash of the git commit
*/
git_commit_hash
:
string
;
/**
* Day of the workflow execution
*/
started_at
:
string
;
/**
* ID of the workflow
*/
workflow_id
:
string
;
/**
* ID of developer of the workflow
*/
developer_id
:
string
;
/**
* End status of the workflow execution
*/
status
:
WorkflowExecutionStatus
;
};
Loading