mirror of
https://github.com/bitwarden/server.git
synced 2025-04-27 07:42:15 -05:00

* [EC-758] Add environment variable GlobalSettings.Sso.EnforceSsoPolicyForAllUsers to enforce SSO Policy for all users * [EC-758] Add integration tests * [EC-758] Add Entities namespace to resolve ambiguous reference * [EC-758] dotnet format * [EC-758] Updated integration tests to check for logins with all user types * [EC-758] Create new TestServer for each test * [EC-758] Combine unit tests and refactor to use BitAutoData
9 lines
214 B
C#
9 lines
214 B
C#
namespace Bit.Core.Settings;
|
|
|
|
public interface ISsoSettings
|
|
{
|
|
int CacheLifetimeInSeconds { get; set; }
|
|
double SsoTokenLifetimeInSeconds { get; set; }
|
|
bool EnforceSsoPolicyForAllUsers { get; set; }
|
|
}
|