mirror of
				https://github.com/Tivix/django-rest-auth.git
				synced 2025-10-31 15:57:34 +03:00 
			
		
		
		
	Revert "allows registration throttle control"
This commit is contained in:
		
							parent
							
								
									3b80fcbca9
								
							
						
					
					
						commit
						83e200e576
					
				|  | @ -49,20 +49,3 @@ Configuration | |||
| - **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 | ||||
| 
 | ||||
| 
 | ||||
| Throttling | ||||
| ============= | ||||
| 
 | ||||
| You may specify custom throttling for ``rest_auth.register.views.RegisterView`` by specifying DRF settings: | ||||
| 
 | ||||
|     .. code-block:: python | ||||
| 
 | ||||
|         REST_FRAMEWORK = { | ||||
|             'DEFAULT_THROTTLE_RATES': { | ||||
|                 'anon': '6/m', | ||||
|                 'register_view':'1/h', | ||||
|             }, | ||||
|         } | ||||
|      | ||||
| 
 | ||||
|  |  | |||
|  | @ -28,7 +28,6 @@ class RegisterView(CreateAPIView): | |||
|     serializer_class = RegisterSerializer | ||||
|     permission_classes = (AllowAny, ) | ||||
|     token_model = TokenModel | ||||
|     throttle_scope = 'register_view' | ||||
| 
 | ||||
|     def get_response_data(self, user): | ||||
|         if allauth_settings.EMAIL_VERIFICATION == \ | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	Block a user