File tree Expand file tree Collapse file tree 3 files changed +4
-8
lines changed Expand file tree Collapse file tree 3 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ window.getUserKeys = async () => {
51
51
window . sessionFeatureFlags = {
52
52
useOnionRequests : true ,
53
53
useTestNet : isTestNet ( ) || isTestIntegration ( ) ,
54
- useClosedGroupV2 : true , // TODO DO NOT MERGE Remove after QA
54
+ useClosedGroupV2 : false , // TODO DO NOT MERGE Remove after QA
55
55
forceLegacyGroupsDeprecated : false , // TODO DO NOT MERGE Remove after QA
56
56
useClosedGroupV2QAButtons : false , // TODO DO NOT MERGE Remove after QA
57
57
replaceLocalizedStringsWithKeys : false ,
Original file line number Diff line number Diff line change @@ -700,7 +700,6 @@ function OutdatedLegacyGroupBanner() {
700
700
'h:mm a, d MMM yyyy'
701
701
) ;
702
702
703
- // FIXME change the date here. Remove after QA
704
703
const text = deprecatedLegacyGroups
705
704
? localize (
706
705
weAreAdmin ? 'legacyGroupAfterDeprecationAdmin' : 'legacyGroupAfterDeprecationMember'
Original file line number Diff line number Diff line change @@ -99,18 +99,15 @@ export const REACT_LIMIT = 6;
99
99
100
100
export const UPDATER_INTERVAL_MS = 10 * DURATION . MINUTES ;
101
101
102
- // update this to be when we ship desktop groups REMOVE AFTER QA
103
- const GROUP_DESKTOP_RELEASE = 1735693200000 ; // currently 1st Jan 2025
104
-
105
102
/**
106
- * 3+7 days after the release of groups (more or less) , we force new groups to be created as new groups
103
+ * 3+7 days after the release of groups, we force groups to be created as * new* groups
107
104
*/
108
- const START_CREATE_NEW_GROUP = GROUP_DESKTOP_RELEASE + DURATION . DAYS * 10 ;
105
+ const START_CREATE_NEW_GROUP = 1741816800000 ; // Currently Thursday March 13th 09:00 AEDT
109
106
110
107
/**
111
108
* 2 weeks after `START_CREATE_NEW_GROUP`, we mark legacy groups readonly
112
109
*/
113
- const LEGACY_GROUP_READONLY = START_CREATE_NEW_GROUP + DURATION . WEEKS * 2 ;
110
+ const LEGACY_GROUP_READONLY = 1743026400000 ; // Currently Thursday March 27th 09:00 AEDT
114
111
115
112
export const FEATURE_RELEASE_TIMESTAMPS = {
116
113
DISAPPEARING_MESSAGES_V2 : 1710284400000 , // 13/03/2024 10:00 Melbourne time
You can’t perform that action at this time.
0 commit comments