mirror of
https://github.com/Tivix/django-rest-auth.git
synced 2025-06-27 16:13:03 +03:00
Update configuration.rst
add docs for custom permission for standard registration view
This commit is contained in:
parent
5c556cd09a
commit
52f2ae1772
|
@ -51,3 +51,13 @@ Configuration
|
||||||
- **OLD_PASSWORD_FIELD_ENABLED** - set it to True if you want to have old password verification on password change enpoint (default: False)
|
- **OLD_PASSWORD_FIELD_ENABLED** - set it to True if you want to have old password verification on password change enpoint (default: False)
|
||||||
|
|
||||||
- **LOGOUT_ON_PASSWORD_CHANGE** - set to False if you want to keep the current user logged in after a password change
|
- **LOGOUT_ON_PASSWORD_CHANGE** - set to False if you want to keep the current user logged in after a password change
|
||||||
|
|
||||||
|
- **REST_AUTH_REGISTER_PERMISSION_CLASSES** - set to add permissions to the registration view
|
||||||
|
|
||||||
|
Example configuration with dry-permissions (https://github.com/dbkaplan/dry-rest-permissions):
|
||||||
|
|
||||||
|
.. code-block:: python
|
||||||
|
|
||||||
|
REST_AUTH_REGISTER_PERMISSION_CLASSES = [
|
||||||
|
'dry_rest_permissions.generics.DRYPermissions'
|
||||||
|
]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user