django-rest-auth icon indicating copy to clipboard operation
django-rest-auth copied to clipboard

This app makes it extremely easy to build Django powered SPA's (Single Page App) or Mobile apps exposing all registration and authentication related functionality as CBV's (Class Base View) and REST (...

Results 121 django-rest-auth issues
Sort by recently updated
recently updated
newest added

Add DRF throttle scopes to relevant rest auth views. This enables configuring rate limits for rest-auth views"

Callback urls require being absolute, which is pretty cumbersome espacially when dealing with differents environments (dev/staging/production for instance). Being able to provide dynamic callbacks url hence allows for things like...

This PR closes #553 by providing the `.po` file which contains the Greek translations

Hello, I am trying to set the is_superuser and is_staff fields when a user Registers using the /rest-auth/registration/ (POST) or the /rest-auth/user/ (PUT) endpoints. Are these fields available in Django-Rest-Auth...

In `registration.serializers.SocialLoginSerializer`, the validate method has the following logic: ``` try: login = self.get_social_login(adapter, app, social_token, access_token) complete_social_login(request, login) except HTTPError: raise serializers.ValidationError(_("Incorrect value")) ``` In other words the `access_token`,...

I saw an old PR was reverted that added support for rate limiting. It seems the suggested solution is to subclass each view but that seems unnecessary to me. Can...

The default `LoginSerializer` checks for `is_active` field in the following way: ```python # Did we get back an active user? if user: if not user.is_active: msg = _('User account is...

If a ValidationError is raised from the SocialLoginSerializer (or a subclass thereof), the request will return a 400 status code but will still log the user in. For example, in...

when I simply run migrations, it raises error like this ` from django.utils.encoding import python_2_unicode_compatible ImportError: cannot import name 'python_2_unicode_compatible' ` It's look like doesn't support django 3.x?