Skip to content

Commit 5abc73f

Browse files
SW-7681 Create Edit Observations feature flag (#4756)
1 parent 562651b commit 5abc73f

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

src/features.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ export type FeatureName =
66
| 'Survival Rate Calculation'
77
| 'Activity Video Support'
88
| 'Activity Log Highlights'
9-
| 'Activity Log in Funder Portal';
9+
| 'Activity Log in Funder Portal'
10+
| 'Edit Observations';
1011

1112
export type Feature = {
1213
name: FeatureName;
@@ -76,6 +77,15 @@ export const OPT_IN_FEATURES: Feature[] = [
7677
description: ['Support for activity log in funder portal'],
7778
disclosure: ['This is a WIP'],
7879
},
80+
{
81+
name: 'Edit Observations',
82+
preferenceName: 'editObservations',
83+
active: true,
84+
enabled: false,
85+
allowInternalProduction: false,
86+
description: ['Support for editing observation data'],
87+
disclosure: ['This is a WIP'],
88+
},
7989
];
8090

8191
type FeatureMap = { [key: string]: Feature };

0 commit comments

Comments
 (0)