From f15768db62095ec84b53ea270ed78792e029b210 Mon Sep 17 00:00:00 2001 From: Chad Scharf <3904944+cscharf@users.noreply.github.com> Date: Wed, 2 Sep 2020 14:51:53 -0400 Subject: [PATCH] GlobalSettings SSO cache timeout setting in sec (#906) * GlobalSettings SSO cache timeout setting in sec * Rename cache duration/lifetime property --- src/Core/GlobalSettings.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Core/GlobalSettings.cs b/src/Core/GlobalSettings.cs index 69612b09e9..b9442e6446 100644 --- a/src/Core/GlobalSettings.cs +++ b/src/Core/GlobalSettings.cs @@ -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