@@ -233,6 +233,7 @@ class PerAccountStore extends ChangeNotifier with ChannelStore, MessageStore {
233
233
connection: connection,
234
234
realmUrl: account.realmUrl,
235
235
maxFileUploadSizeMib: initialSnapshot.maxFileUploadSizeMib,
236
+ realmWaitingPeriodThreshold: initialSnapshot.realmWaitingPeriodThreshold,
236
237
realmDefaultExternalAccounts: initialSnapshot.realmDefaultExternalAccounts,
237
238
realmEmoji: initialSnapshot.realmEmoji,
238
239
customProfileFields: _sortCustomProfileFields (initialSnapshot.customProfileFields),
@@ -267,6 +268,7 @@ class PerAccountStore extends ChangeNotifier with ChannelStore, MessageStore {
267
268
required this .connection,
268
269
required this .realmUrl,
269
270
required this .maxFileUploadSizeMib,
271
+ required this .realmWaitingPeriodThreshold,
270
272
required this .realmDefaultExternalAccounts,
271
273
required this .realmEmoji,
272
274
required this .customProfileFields,
@@ -319,6 +321,8 @@ class PerAccountStore extends ChangeNotifier with ChannelStore, MessageStore {
319
321
320
322
String get zulipVersion => account.zulipVersion;
321
323
final int maxFileUploadSizeMib; // No event for this.
324
+ /// For docs, please see [InitialSnapshot.realmWaitingPeriodThreshold] .
325
+ final int realmWaitingPeriodThreshold;
322
326
final Map <String , RealmDefaultExternalAccount > realmDefaultExternalAccounts;
323
327
Map <String , RealmEmojiItem > realmEmoji;
324
328
List <CustomProfileField > customProfileFields;
0 commit comments