1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-05 10:02:47 -05:00

[AC-2741] Turn on BulkDeviceApproval feature for self-host (#4453)

Also remove the feature flagging on server, but keep definition
for old clients
This commit is contained in:
Thomas Rittson
2024-07-11 08:38:06 +10:00
committed by GitHub
parent 8f70dd98ba
commit ca50eb8fe3
3 changed files with 2 additions and 6 deletions

View File

@ -151,7 +151,8 @@ public static class FeatureFlagKeys
return new Dictionary<string, string>()
{
{ DuoRedirect, "true" },
{ FlexibleCollectionsV1, "true" }
{ FlexibleCollectionsV1, "true" },
{ BulkDeviceApproval, "true" }
};
}
}