Add flag for automatic back pagination feature

This commit is contained in:
Jorge Martín 2026-04-21 15:56:38 +02:00
parent 75db550ca8
commit f6ed0a645a
2 changed files with 13 additions and 0 deletions

View file

@ -161,4 +161,12 @@ enum class FeatureFlags(
defaultValue = { false },
isFinished = false,
),
AutomaticBackPagination(
key = "feature.automatic_back_pagination",
title = "Automatic back pagination of rooms",
description = "Allow the app to automatically back paginate in rooms to pre-fetch older messages in background." +
"\nRequires an app restart to take effect.",
defaultValue = { false },
isFinished = false,
),
}