Simple role-based user permissions for Django.
Project description
Add userroles do INSTALLED_APPS
INSTALLED_APPS = ( ... 'userroles', )
Add the USER_ROLES setting
USER_ROLES = ( 'manager', 'moderator', 'client', )
Define your Custom User model (optional)
AUTH_USER_MODEL = 'custom_user.EmailUser'
Add subroles for any of the roles defined in the USER_ROLES setting (optional)
MANAGER_ROLES = ( 'staff_manager', 'business_manager' )
Subroles can have sub-subroles and so on. But be careful not to repeat the names!
The role_required decorator provides similar behavior to Django’s login_required and permission_required decorators. If the user accessing the view does not have the required roles, they will be redirected to the login page.
from userroles.decorators import role_required @role_required('manager', 'moderator') def view(request): ...
or
from userroles.decorators import role_required from userroles import roles @role_required(roles.manager, roles.moderator) def view(request): ...
If user has a subrole of the required role, it passes de user test as well!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file custom-user-roles-1.1.0.tar.gz
.
File metadata
- Download URL: custom-user-roles-1.1.0.tar.gz
- Upload date:
- Size: 4.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d995563f8fe5c6d3167687af65cceae54a4e603057b20541dc8352541a2615a |
|
MD5 | 85721fdc669e2698808f95949a0dd00f |
|
BLAKE2b-256 | 4f34b5c3d04001078ded898e0a5daeb12237316b693c4080f184da8cd34d5c8d |
File details
Details for the file custom_user_roles-1.1.0-py2-none-any.whl
.
File metadata
- Download URL: custom_user_roles-1.1.0-py2-none-any.whl
- Upload date:
- Size: 7.5 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b6b2bdb1522686891596205a4b33e23f7f6452bc4c7a279220b632808896d13a |
|
MD5 | b30b3982105b4d45f538dc7416e95a01 |
|
BLAKE2b-256 | fb3a17c2a3b91a2303745656c6b21e31e4dfa296d22f4e12656f29da22b06897 |