Additional Configuration
Session Timeout
If a user is interacting with a form, session will be kept alive by default. All other pages will expire by default after 30 minutes.
To change timeout value, simply change the Timeout parameter of the Authentication section in the AppSettings.json
. Here a snippet for a site that will timeout after 60 minutes:
"Authentication": {
"Settings": {
"CookiePrefix": "InfinitiDev",
"Timeout": "60"
}
}
To also timeout forms, add AllowTimeout
inside the AppSettings
section of the AppSettings.json
"AppSettings": {
"AllowTimeout": "true"
}
Once the session has expired, it will take the user back to the login screen.
Note
Any data entered on that particular screen before the timeout occurs will be lost. Infiniti will take the user back to last saved state of the form.
Updated over 5 years ago