@@ -472,6 +472,8 @@ class PerAccountStore extends PerAccountStoreBase with ChangeNotifier, EmojiStor
472
472
realmWaitingPeriodThreshold: initialSnapshot.realmWaitingPeriodThreshold,
473
473
maxFileUploadSizeMib: initialSnapshot.maxFileUploadSizeMib,
474
474
realmEmptyTopicDisplayName: initialSnapshot.realmEmptyTopicDisplayName,
475
+ realmAllowMessageEditing: initialSnapshot.realmAllowMessageEditing,
476
+ realmMessageContentEditLimitSeconds: initialSnapshot.realmMessageContentEditLimitSeconds,
475
477
realmDefaultExternalAccounts: initialSnapshot.realmDefaultExternalAccounts,
476
478
customProfileFields: _sortCustomProfileFields (initialSnapshot.customProfileFields),
477
479
emailAddressVisibility: initialSnapshot.emailAddressVisibility,
@@ -509,6 +511,8 @@ class PerAccountStore extends PerAccountStoreBase with ChangeNotifier, EmojiStor
509
511
required this .realmWaitingPeriodThreshold,
510
512
required this .maxFileUploadSizeMib,
511
513
required String ? realmEmptyTopicDisplayName,
514
+ required this .realmAllowMessageEditing,
515
+ required this .realmMessageContentEditLimitSeconds,
512
516
required this .realmDefaultExternalAccounts,
513
517
required this .customProfileFields,
514
518
required this .emailAddressVisibility,
@@ -563,6 +567,8 @@ class PerAccountStore extends PerAccountStoreBase with ChangeNotifier, EmojiStor
563
567
final bool realmMandatoryTopics; // TODO(#668): update this realm setting
564
568
/// For docs, please see [InitialSnapshot.realmWaitingPeriodThreshold] .
565
569
final int realmWaitingPeriodThreshold; // TODO(#668): update this realm setting
570
+ final bool realmAllowMessageEditing; // TODO(#668): update this realm setting
571
+ final int ? realmMessageContentEditLimitSeconds; // TODO(#668): update this realm setting
566
572
final int maxFileUploadSizeMib; // No event for this.
567
573
568
574
/// The display name to use for empty topics.
0 commit comments