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

Currently you need password1 and password2 when making an new account or newpass1 and newpass2. This is not necessary or can be handled on the front end. Nowadays we have...

My url: `path("rest-auth/", include("rest_auth.urls"))` When i request password reset with this endpoitn: http://127.0.0.1:8000/rest-auth/password/reset/ it sends me an email with an url which is working well to reset password but i...

I realize this topic has been brought up before, but theres not really a solid solution in the docs or anywhere else. From the FAQ in the docs regarding registration:...

I am using django rest auth for registration. I am using email as login and the below are my settings ``` ACCOUNT_USER_MODEL_USERNAME_FIELD = None ACCOUNT_EMAIL_REQUIRED = True ACCOUNT_UNIQUE_EMAIL = True...

I have overridden Django-rest-auth PasswordResetSerializer code: class CustomPasswordResetSerializer(PasswordResetSerializer): def get_email_options(self): return { 'email_template_name': 'password_reset_email.html' } settings.py TEMPLATES = [ { 'BACKEND': 'django.template.backends.django.DjangoTemplates', 'DIRS': [os.path.join(BASE_DIR, '../frontend','../users/templates/users/registration')], 'APP_DIRS': True, 'OPTIONS': { 'context_processors':...

Hello, how can I customize the response of the login view so that it returns the token and also the id of the logged in user?

# Background The JWT dependence "djangorestframework-jwt" [stop being maintained ](https://github.com/jpadilla/django-rest-framework-jwt/issues/484)with [obvious BUGS of token refreshing](https://github.com/jpadilla/django-rest-framework-jwt/issues/474) (both [here](https://github.com/jpadilla/django-rest-framework-jwt/issues/442)) remaining. In fact, although there is a [fixing PR](https://github.com/jpadilla/django-rest-framework-jwt/pull/348) long long times ago,...

Hi thanks for your great project, I wonder as "django-rest-framework-jwt" is not supported anymore, is it possible to change your base JWT option from it to sth like "rest_framework_simplejwt", or...

Does anybody have any examples of using Django Rest Auth with a MFA plugin?