@@ -235,6 +235,7 @@ class PerAccountStore extends ChangeNotifier with EmojiStore, ChannelStore, Mess
235
235
connection: connection,
236
236
realmUrl: realmUrl,
237
237
maxFileUploadSizeMib: initialSnapshot.maxFileUploadSizeMib,
238
+ realmWaitingPeriodThreshold: initialSnapshot.realmWaitingPeriodThreshold,
238
239
realmDefaultExternalAccounts: initialSnapshot.realmDefaultExternalAccounts,
239
240
customProfileFields: _sortCustomProfileFields (initialSnapshot.customProfileFields),
240
241
emailAddressVisibility: initialSnapshot.emailAddressVisibility,
@@ -270,6 +271,7 @@ class PerAccountStore extends ChangeNotifier with EmojiStore, ChannelStore, Mess
270
271
required this .connection,
271
272
required this .realmUrl,
272
273
required this .maxFileUploadSizeMib,
274
+ required this .realmWaitingPeriodThreshold,
273
275
required this .realmDefaultExternalAccounts,
274
276
required this .customProfileFields,
275
277
required this .emailAddressVisibility,
@@ -324,6 +326,8 @@ class PerAccountStore extends ChangeNotifier with EmojiStore, ChannelStore, Mess
324
326
325
327
String get zulipVersion => account.zulipVersion;
326
328
final int maxFileUploadSizeMib; // No event for this.
329
+ /// For docs, please see [InitialSnapshot.realmWaitingPeriodThreshold] .
330
+ final int realmWaitingPeriodThreshold; // TODO(#668): update this realm setting
327
331
final Map <String , RealmDefaultExternalAccount > realmDefaultExternalAccounts;
328
332
List <CustomProfileField > customProfileFields;
329
333
/// For docs, please see [InitialSnapshot.emailAddressVisibility] .
0 commit comments