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

On the [Sample usage](https://github.com/sunscrapers/djoser/blob/master/docs/source/sample_usage.rst) page I follow the instructions but get an error with pip: ```shell $ git clone [email protected]:sunscrapers/djoser.git $ cd djoser $ pip install -e . ``` `ERROR:...

### Description There is some typo on the readme page, ```eveything``` it should be everything, ```preapred``` it should be prepared. Acknowledgment/Screenshot ![img1](https://user-images.githubusercontent.com/59140024/110215241-a74aec00-7ece-11eb-9883-83bc1cebaa17.png) ![img2](https://user-images.githubusercontent.com/59140024/110215245-ad40cd00-7ece-11eb-88bf-0d008cf0d99d.png)

OPTIONS request sent to /auth/users/me/ endpoint is giving AssertionError Internal Server Error: /auth/users/me/ Traceback (most recent call last): File "D:\django\venv\lib\site-packages\django\core\handlers\exception.py", line 47, in inner response = get_response(request) File "D:\django\venv\lib\site-packages\django\core\handlers\base.py", line...

This feature seems so important I am surprised that it's not there, or maybe I am missing it? Since we build APIs the case of having multiple clients logging in...

How can I link a social network to a user account?

Why is the user's current_password required when calling set_username, given that the permission on that view is CurrentUserOrAdmin?

Every time when I try to **update** my user with the **PATCH** method to the **_/users/me/_** endpoint, an activation email is always sent. The user is already active in the...

I considered overriding the `token` serialiser with settings but I don't see how it would help since user object is not passed to that serializer by djoser anyway. One could...

May you help with how can I overide the serializer to include extra fields from a custom serializer

I have my users (optionally) signed up to an external mailing list for marketing. It would be really useful if this library could send out a user_updated signal that I...