mirror of
https://github.com/OpenBankProject/API-Explorer.git
synced 2026-02-06 10:47:23 +00:00
Merge pull request #230 from constantine2nd/develop
Add props session_inactivity_timeout_in_minutes
This commit is contained in:
commit
1aba406a2a
@ -179,5 +179,10 @@ dev.port=8082
|
||||
# ------------------------------ Identity Provider OAuth2 Props end --------------------------
|
||||
|
||||
|
||||
# If you want to make the Lift inactivity timeout shorter than
|
||||
# the container inactivity timeout, set the inactivity timeout here
|
||||
session_inactivity_timeout_in_minutes = 30
|
||||
|
||||
|
||||
# Please note that depricated name ot this props is: language_tag
|
||||
default_locale = en_GB
|
||||
@ -240,5 +240,12 @@ class Boot extends MdcLoggable{
|
||||
// Used in order to allow to override the Host header where using java's HttpUrlConnection class
|
||||
System.setProperty("sun.net.http.allowRestrictedHeaders", "true")
|
||||
|
||||
Props.get("session_inactivity_timeout_in_minutes") match {
|
||||
case Full(x) if tryo(x.toLong).isDefined =>
|
||||
LiftRules.sessionInactivityTimeout.default.set(Full((x.toLong.minutes): Long))
|
||||
case _ =>
|
||||
// Do not change default value
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user