[Use case] Our django application utilizes AJAX and allows multiple writers and editor to view and edit a single article.
Our Django application has the following session management requirements.
- Only allows 1 authenticated user on the page at any 1 time.
- Sessions expire when the user closes the window or exits the page.
- Sessions expire after a period of inactivity
- If the user is active on the app, the session must not time out.
Currently I have been looking into the sessions model however I have not seen any solutions to limit the page to only 1 user.
Thanks!