File tree 1 file changed +4
-0
lines changed 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -151,6 +151,7 @@ class PerAccountStore extends ChangeNotifier {
151
151
required InitialSnapshot initialSnapshot,
152
152
}) : zulipVersion = initialSnapshot.zulipVersion,
153
153
maxFileUploadSizeMib = initialSnapshot.maxFileUploadSizeMib,
154
+ userSettings = initialSnapshot.userSettings,
154
155
users = Map .fromEntries (
155
156
initialSnapshot.realmUsers
156
157
.followedBy (initialSnapshot.realmNonActiveUsers)
@@ -172,6 +173,9 @@ class PerAccountStore extends ChangeNotifier {
172
173
final String zulipVersion; // TODO get from account; update there on initial snapshot
173
174
final int maxFileUploadSizeMib; // No event for this.
174
175
176
+ // Data attached to the self-account on the realm.
177
+ final UserSettings ? userSettings; // TODO(#135) update with user_settings/update event
178
+
175
179
// Users and data about them.
176
180
final Map <int , User > users;
177
181
You can’t perform that action at this time.
0 commit comments