djoser icon indicating copy to clipboard operation
djoser copied to clipboard

REST implementation of Django authentication system.

Results 155 djoser issues
Sort by recently updated
recently updated
newest added

Hey guys, awesome work on `djoser`! I encountered an error in `django==3.0.9` + `djoser==2.0.3`. Django `MinimumLengthValidator` throws the following error (applicable to other Django validators as well): ``` Server Error:...

**Whats the problem?** I cannot for the life of me get the `user_registered` signal to fire. I have no idea why. On creating a user with the djoser `/users/` endpoint,...

Thanks for writing Djoser! I really like the library and API. The only thing I've found frustrating recently is that emails are automatically treated as case-sensitive per discussion in #87....

enhancement

I am using `django-tenant-users` which includes `is_active` and `is_verified` fields on the user models. I would like the serializers to validate using the `is_verified` field, but Djoser is currently hardcoded...

Hi to everyone, I'm trying to configure the djoser social auth, but I'm getting always this error. Doing some debug I found that when the parameters state and code are...

``` def validate(self, attrs): user = self.context["request"].user or self.user # why assert? There are ValidationError / fail everywhere assert user is not None ``` When the user is not logged...

As mentioned in #373, session authentication is working in djoser. I would like to advocate to keep session authentication working after the code refactoring announced by @dekoza in #373 ....

Hi It s rather question then issue. Is it any way to use Celery to send activation and other emails sent by Djoser. Default implementation in Djoser uses request as...

Registering a new user in the database either by curl or postman actually works and the token , when i try retrieving the user instance , i get >> `User...

Hello everyone. I use these: Django==2.1.3 djangorestframework==3.9.0 djangorestframework-jwt==1.11 djangorestframework-simplejwt==4.3.0 djoser==1.5.1 I've defined djoser urls in this way in my urls.py file of the project: path('api/auth/', include('djoser.urls')) I found out that...