• Alex K
        Has successfully completed the online course Intermediate (200)
        Has successfully completed the online course Advanced (300)
        Has successfully completed the online course Basics (100)
        Has successfully completed the online course Advanced (310)
        Has successfully completed the online course Advanced (320)
      1 year ago #37397
      Up
      0
      Down
      ::

      I would suggest using a timer-based solution, that checks in intervals if the session still persists. Once that fails, then the redirection would be triggered. This keeps the session alive as long as the tab is still in “active” state. As long as the user uses 2 Tabs, the “active” state shifts and the timeout triggers the timeout redirect.
      Additionally to this, you also have the option to select “notify before logout” option when logging in in the Process designer, also having the ability to enter a Time in minutes. This does not seem to work on my end until a manual Logout is being triggered.
      Due to the nature of Design, there also is a Server Action for Logout. This could be triggered instead of the redirect as this ends the session actively, if you want to reduce the session time.

      Use this code right after the login in a script for manual notification:

      setTimeout( function() { alert("Your session will expire in 5 minutes."); }, 5*60*1000); // Calculation for 10 Minutes session time

    Viewing 2 posts - 1 through 2 (of 2 total)

    You must be logged in to reply to this topic.