mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
[Require SSO] Added service layer dependent policy check (#977)
* Added service layer dependent policy check * Updated to SingleOrg
This commit is contained in:
parent
0eccfb8784
commit
a5db233e51
@ -44,6 +44,24 @@ namespace Bit.Core.Services
|
|||||||
{
|
{
|
||||||
throw new BadRequestException("This organization cannot use policies.");
|
throw new BadRequestException("This organization cannot use policies.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Handle dependent policy checks
|
||||||
|
switch(policy.Type)
|
||||||
|
{
|
||||||
|
case PolicyType.RequireSso:
|
||||||
|
if (policy.Enabled)
|
||||||
|
{
|
||||||
|
var singleOrg = await _policyRepository.GetByOrganizationIdTypeAsync(org.Id, PolicyType.SingleOrg);
|
||||||
|
if (singleOrg?.Enabled != true)
|
||||||
|
{
|
||||||
|
throw new BadRequestException("Single Organization policy not enabled.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
var now = DateTime.UtcNow;
|
var now = DateTime.UtcNow;
|
||||||
if (policy.Id == default(Guid))
|
if (policy.Id == default(Guid))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user