1
0
mirror of https://github.com/bitwarden/server synced 2025-12-11 22:03:38 +00:00

Remove FC MVP code from Bitwarden Portal (#4492)

This commit is contained in:
Thomas Rittson
2024-07-12 06:13:41 +10:00
committed by GitHub
parent 7fe4fe16cb
commit 25dc0c9178
2 changed files with 2 additions and 15 deletions

View File

@@ -69,14 +69,4 @@ public class OrganizationViewModel
public int ServiceAccountsCount { get; set; }
public int OccupiedSmSeatsCount { get; set; }
public bool UseSecretsManager => Organization.UseSecretsManager;
public string GetCollectionManagementSetting(bool collectionManagementSetting)
{
if (!Organization.FlexibleCollections)
{
return "N/A";
}
return collectionManagementSetting ? "On" : "Off";
}
}