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