fix(search): make closed DM search work correctly (#37)

This commit is contained in:
hampus-fluxer
2026-01-06 01:32:00 +01:00
committed by GitHub
parent ea0a2d8aae
commit cbe914cf6f
10 changed files with 127 additions and 1 deletions

View File

@@ -69,6 +69,11 @@ pub const flag_app_store_reviewer = Flag(
9_007_199_254_740_992,
)
pub const flag_dm_history_backfilled = Flag(
"DM_HISTORY_BACKFILLED",
18_014_398_509_481_984,
)
pub fn get_patchable_flags() -> List(Flag) {
[
flag_staff,
@@ -84,6 +89,7 @@ pub fn get_patchable_flags() -> List(Flag) {
flag_pending_manual_verification,
flag_used_mobile_client,
flag_app_store_reviewer,
flag_dm_history_backfilled,
]
}