@@ -268,6 +268,7 @@ class PerAccountStore extends ChangeNotifier with EmojiStore, ChannelStore, Mess
268
268
globalStore: globalStore,
269
269
connection: connection,
270
270
realmUrl: realmUrl,
271
+ realmWildcardMentionPolicy: initialSnapshot.realmWildcardMentionPolicy,
271
272
realmMandatoryTopics: initialSnapshot.realmMandatoryTopics,
272
273
realmWaitingPeriodThreshold: initialSnapshot.realmWaitingPeriodThreshold,
273
274
maxFileUploadSizeMib: initialSnapshot.maxFileUploadSizeMib,
@@ -312,6 +313,7 @@ class PerAccountStore extends ChangeNotifier with EmojiStore, ChannelStore, Mess
312
313
required GlobalStore globalStore,
313
314
required this .connection,
314
315
required this .realmUrl,
316
+ required this .realmWildcardMentionPolicy,
315
317
required this .realmMandatoryTopics,
316
318
required this .realmWaitingPeriodThreshold,
317
319
required this .maxFileUploadSizeMib,
@@ -377,6 +379,7 @@ class PerAccountStore extends ChangeNotifier with EmojiStore, ChannelStore, Mess
377
379
Uri ? tryResolveUrl (String reference) => _tryResolveUrl (realmUrl, reference);
378
380
379
381
String get zulipVersion => account.zulipVersion;
382
+ final RealmWildcardMentionPolicy realmWildcardMentionPolicy; // TODO(#668): update this realm setting
380
383
final bool realmMandatoryTopics; // TODO(#668): update this realm setting
381
384
/// For docs, please see [InitialSnapshot.realmWaitingPeriodThreshold] .
382
385
final int realmWaitingPeriodThreshold; // TODO(#668): update this realm setting
0 commit comments