You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/api/model/model.dart
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -199,11 +199,12 @@ enum Emojiset {
199
199
.map((key, value) =>MapEntry(value, key));
200
200
}
201
201
202
-
/// As in [InitialSnapshot.realmUserGroups].
202
+
/// As in [InitialSnapshot.realmUserGroups] or [UserGroupAddEvent].
203
203
@JsonSerializable(fieldRename:FieldRename.snake)
204
204
classUserGroup {
205
205
finalint id;
206
206
207
+
// TODO(#1687) to maintain members, also act on user deactivation: https://github.com/zulip/zulip-flutter/issues/662#issuecomment-2405845356
207
208
// List<int> members; // TODO(#1687) track group members
208
209
// List<int> directSubgroupIds; // TODO(#1687) track group members
209
210
@@ -216,7 +217,7 @@ class UserGroup {
216
217
finalbool isSystemGroup;
217
218
bool deactivated;
218
219
219
-
// TODO(#814): GroupSettingValue canAddMembersGroup, etc.
220
+
// TODO(#814): GroupSettingValue canAddMembersGroup, etc.; add to update event too
0 commit comments