Skip to content

Commit 3ff1cd6

Browse files
authored
[WM-2168] Add Collaborative Workflows feature-flag (#4134)
1 parent 90894e9 commit 3ff1cd6

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/libs/feature-previews-config.ts

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ export const JUPYTERLAB_GCP_FEATURE_ID = 'jupyterlab-gcp';
22
export const ENABLE_JUPYTERLAB_ID = 'enableJupyterLabGCP';
33
export const HAIL_BATCH_AZURE_FEATURE_ID = 'hail-batch-azure';
44
export const ENABLE_CROMWELL_APP_CALL_CACHING = 'enableCromwellAppCallCaching';
5+
export const ENABLE_AZURE_COLLABORATIVE_WORKFLOWS = 'enableCollborativeWorkflows';
56

67
// If the groups option is defined for a FeaturePreview, it must contain at least one group.
78
type GroupsList = readonly [string, ...string[]];
@@ -89,6 +90,15 @@ const featurePreviewsConfig: readonly FeaturePreview[] = [
8990
'Feedback on Cromwell call caching configuration (Azure)'
9091
)}`,
9192
},
93+
{
94+
id: ENABLE_AZURE_COLLABORATIVE_WORKFLOWS,
95+
title: 'Azure Collaborative Workflows',
96+
description:
97+
'Enabling this feature will allow for workspaces to become collaborative with other users to run workflows and read workspace data',
98+
feedbackUrl: `mailto:[email protected]?subject=${encodeURIComponent(
99+
'Feedback on Azure Collaborative Workflows experience.'
100+
)}`,
101+
},
92102
];
93103

94104
export default featurePreviewsConfig;

0 commit comments

Comments
 (0)