1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 15:42:48 -05:00

chore: remove fc v1 feature flag, remove obsolete feature service calls from tests, refs PM-10295 (#4618)

This commit is contained in:
Vincent Salucci
2024-08-13 11:20:05 -05:00
committed by GitHub
parent 1442bf94ae
commit 253ad9c74f
6 changed files with 0 additions and 29 deletions

View File

@ -104,7 +104,6 @@ public static class FeatureFlagKeys
public const string BrowserFilelessImport = "browser-fileless-import";
public const string ReturnErrorOnExistingKeypair = "return-error-on-existing-keypair";
public const string UseTreeWalkerApiForPageDetailsCollection = "use-tree-walker-api-for-page-details-collection";
public const string FlexibleCollectionsV1 = "flexible-collections-v-1"; // v-1 is intentional
public const string ItemShare = "item-share";
public const string KeyRotationImprovements = "key-rotation-improvements";
public const string DuoRedirect = "duo-redirect";
@ -151,7 +150,6 @@ public static class FeatureFlagKeys
return new Dictionary<string, string>()
{
{ DuoRedirect, "true" },
{ FlexibleCollectionsV1, "true" },
{ BulkDeviceApproval, "true" }
};
}