Skip to content

Commit f8da37f

Browse files
committed
TODO api: Add TODO to modernize zulipMergeBase
Marked as TODO as this might change in the future. See zulip#904 (comment). See "Feature level 88" from Zulip API changelog: https://zulip.com/api/changelog Signed-off-by: Zixuan James Li <[email protected]>
1 parent 6ebf48f commit f8da37f

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

lib/api/model/initial_snapshot.dart

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ class InitialSnapshot {
1818
final int lastEventId;
1919
final int zulipFeatureLevel;
2020
final String zulipVersion;
21-
final String? zulipMergeBase; // TODO(server-5)
21+
// TODO: Modernize this once we get to #267
22+
final String? zulipMergeBase;
2223

2324
final List<String> alertWords;
2425

lib/api/model/initial_snapshot.g.dart

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/api/route/realm.dart

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ class GetServerSettingsResult {
3434

3535
final int zulipFeatureLevel;
3636
final String zulipVersion;
37-
final String? zulipMergeBase; // TODO(server-5)
37+
// TODO: Modernize this once we get to #267
38+
final String? zulipMergeBase;
3839

3940
final bool pushNotificationsEnabled;
4041
final bool isIncompatible;

lib/api/route/realm.g.dart

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)