mirror of
https://github.com/bitwarden/server
synced 2025-12-15 07:43:54 +00:00
Key Connector feature toggle (#1716)
This commit is contained in:
@@ -10,6 +10,7 @@ using NSubstitute;
|
||||
using System.Threading.Tasks;
|
||||
using System.Security.Claims;
|
||||
using System;
|
||||
using Bit.Core.Models.Data;
|
||||
using Xunit;
|
||||
|
||||
namespace Bit.Api.Test.Controllers
|
||||
@@ -59,7 +60,10 @@ namespace Bit.Api.Test.Controllers
|
||||
var ssoConfig = new SsoConfig
|
||||
{
|
||||
Id = default,
|
||||
Data = "{\"useKeyConnector\": true}",
|
||||
Data = new SsoConfigurationData
|
||||
{
|
||||
KeyConnectorEnabled = true,
|
||||
}.Serialize(),
|
||||
Enabled = true,
|
||||
OrganizationId = orgId,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user