File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
Expand file tree Collapse file tree 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 {
151151 required InitialSnapshot initialSnapshot,
152152 }) : zulipVersion = initialSnapshot.zulipVersion,
153153 maxFileUploadSizeMib = initialSnapshot.maxFileUploadSizeMib,
154+ userSettings = initialSnapshot.userSettings,
154155 users = Map .fromEntries (
155156 initialSnapshot.realmUsers
156157 .followedBy (initialSnapshot.realmNonActiveUsers)
@@ -172,6 +173,9 @@ class PerAccountStore extends ChangeNotifier {
172173 final String zulipVersion; // TODO get from account; update there on initial snapshot
173174 final int maxFileUploadSizeMib; // No event for this.
174175
176+ // Data attached to the self-account on the realm.
177+ final UserSettings ? userSettings; // TODO(#135) update with user_settings/update event
178+
175179 // Users and data about them.
176180 final Map <int , User > users;
177181
You can’t perform that action at this time.
0 commit comments