We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a0fa1a commit ff641cfCopy full SHA for ff641cf
docs/configuration.rst
@@ -49,3 +49,20 @@ Configuration
49
- **OLD_PASSWORD_FIELD_ENABLED** - set it to True if you want to have old password verification on password change enpoint (default: False)
50
51
- **LOGOUT_ON_PASSWORD_CHANGE** - set to False if you want to keep the current user logged in after a password change
52
+
53
54
+Throttling
55
+=============
56
57
+You may specify custom throttling for ``rest_auth.register.views.RegisterView`` by specifying DRF settings:
58
59
+ .. code-block:: python
60
61
+ REST_FRAMEWORK = {
62
+ 'DEFAULT_THROTTLE_RATES': {
63
+ 'anon': '6/m',
64
+ 'register_view':'1/h',
65
+ },
66
+ }
67
68
0 commit comments