This commit is contained in:
2025-06-12 15:12:30 +02:00
parent 5be4079ee0
commit b45562cf2f
24 changed files with 666 additions and 190 deletions

View File

@@ -58,20 +58,7 @@ namespace BeWoPlanerMobil.Controllers
}
}
public static int TimeoutLimit
{
get
{
var timeUntilUILock = BS.Shared.Settings.ApplicationSettings.TimeUntilUILock;
if(timeUntilUILock > 0 && System.Web.HttpContext.Current.Session.Timeout > timeUntilUILock)
{
return timeUntilUILock;
}
return System.Web.HttpContext.Current.Session.Timeout;
}
}
public static int TimeoutLimit => System.Web.HttpContext.Current.Session.Timeout;
[Authorize]
public ActionResult UpdateApplicationSettings(string pKey, string pValue)