1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-22 12:15:36 +01:00

Remove FlexibleCollections check from OrganizationsController (#4123)

This commit is contained in:
Thomas Rittson 2024-05-27 10:57:54 +10:00 committed by GitHub
parent 6a0eae417d
commit 62c90bc50a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -538,11 +538,6 @@ public class OrganizationsController : Controller
throw new NotFoundException();
}
if (!organization.FlexibleCollections)
{
throw new BadRequestException("Organization does not have collection enhancements enabled");
}
var v1Enabled = _featureService.IsEnabled(FeatureFlagKeys.FlexibleCollectionsV1);
if (!v1Enabled)