PM-30130: feat: Remove the Archive Items feature flag (#6667)

This commit is contained in:
David Perez
2026-04-28 14:10:40 -05:00
committed by GitHub
parent 41142a3d4d
commit be1dabb9dc
29 changed files with 37 additions and 411 deletions

View File

@@ -35,7 +35,6 @@ sealed class FlagKey<out T : Any> {
ForceUpdateKdfSettings,
NoLogoutOnKdfChange,
MigrateMyVaultToMyItems,
ArchiveItems,
SendEmailVerification,
CardScanner,
MobilePremiumUpgrade,
@@ -98,14 +97,6 @@ sealed class FlagKey<out T : Any> {
override val defaultValue: Boolean = false
}
/**
* Data object holding the feature flag key for the Archive Items feature.
*/
data object ArchiveItems : FlagKey<Boolean>() {
override val keyName: String = "pm-19148-innovation-archive"
override val defaultValue: Boolean = false
}
/**
* Data object holding the feature flag key for the Send Email Verification feature.
*/

View File

@@ -28,10 +28,6 @@ class FlagKeyTest {
FlagKey.MigrateMyVaultToMyItems.keyName,
"pm-20558-migrate-myvault-to-myitems",
)
assertEquals(
FlagKey.ArchiveItems.keyName,
"pm-19148-innovation-archive",
)
assertEquals(
FlagKey.SendEmailVerification.keyName,
"pm-19051-send-email-verification",
@@ -71,7 +67,6 @@ class FlagKeyTest {
FlagKey.BitwardenAuthenticationEnabled,
FlagKey.ForceUpdateKdfSettings,
FlagKey.MigrateMyVaultToMyItems,
FlagKey.ArchiveItems,
FlagKey.SendEmailVerification,
FlagKey.MobilePremiumUpgrade,
FlagKey.AttachmentUpdates,