Django middleware that prevents multiple concurrent logins. If a user is already logged into the Django application and tries to log in somewhere else, the previous session is deleted.
This package is based on code from http://stackoverflow.com/a/1814797 and https://gist.github.com/peterdemin/5829440.
Usage
Add “preventconcurrentlogins” to your INSTALLED_APPS settings like this:
```python INSTALLED_APPS = { ... 'preventconcurrentlogins', } ```Add “preventconcurrentlogins.middleware.PreventConcurrentLoginsMiddleware” to MIDDLEWARE_CLASSES:
```python MIDDLEWARE_CLASSES = { ... 'preventconcurrentlogins.middleware.PreventConcurrentLoginsMiddleware', } ```
3. Run python manage.py migrate to create the visitor model that is used to track a users currently active session key.
Release files for django-preventconcurrentlogins 0.8.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| django-preventconcurrentlogins-0.8.2.tar.gz | 4.3 kB | Details |
Release files / django-preventconcurrentlogins-0.8.2.tar.gz
| Download URL | django-preventconcurrentlogins-0.8.2.tar.gz |
|---|---|
| Size | 4.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
9cb45fcd63edeec55e5ac29bbd2ee96974dc2a72d74ab88088dbf6a1f52978e9
|
|
BLAKE2b-256 checksum How to use checksums |
bc90ed3b82373bb8150f22e53cf45329f302b440a28bf0773b7bd76681106e0d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |