1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-14 01:28:14 -05:00

GlobalSettings SSO cache timeout setting in sec (#906)

* GlobalSettings SSO cache timeout setting in sec

* Rename cache duration/lifetime property
This commit is contained in:
Chad Scharf 2020-09-02 14:51:53 -04:00 committed by GitHub
parent 055fa4b86f
commit f15768db62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -278,6 +278,7 @@ namespace Bit.Core
public class SsoSettings
{
public int CacheLifetimeInSeconds { get; set; } = 60;
public virtual SamlSettings Saml { get; set; } = new SamlSettings();
public class SamlSettings