Daniel Garcia Sanchez
Daniel Garcia Sanchez
There is an edge case when using email as the authentication method as well as email verification. The server will crash if the user hasn't verified the email but a...
Fix email validation on unverified accounts More info in #617
`django-allauth` introduced `ACCOUNT_EMAIL_NOTIFICATIONS` this past February: https://docs.allauth.org/en/latest/release-notes/recent.html In `django-allauth` this is handled in their views. For instance, in `PasswordChangeView`: ```python def form_valid(self, form): form.save() flows.password_change.finalize_password_change(self.request, form.user) return super().form_valid(form) ``` ```python...
> Not really a bug but an improvement. **Here's my situation:** I have a specific serializer that I only use in a read-only `GET` endpoint. But I also have implemented...
… disable it ## Background (can be skipped) Just as an FYI for anyone who might be looking for this exact issue. I was using `drf-spectacular` together with `dj-rest-auth` and...
I have a general email such as [email protected] which redirects to other emails under the same domain. The problem is that I've gotten several complaints about people receiving delivery errors...
### Q&A (please complete the following information) - OS: N/A - Browser: N/A - Version: N/A - Method of installation: N/A - Swagger-UI version: `5.17.14` - Swagger/OpenAPI version: OpenAPI 3.1...
I created [Wayfinder](https://github.com/dontic/wayfinder) with a django REST backend and a React frontend. It spins up with a `docker-compose.yml` file in minutes and provides both server and storage functions to store...
First of all, let me congratulate you guys on an amazing template. I'm having a bit of trouble when building a site with image optimization as it crashes because, apparently,...
Earlier this year [allauth released a code-based login method](https://allauth.org/news/2024/04/django-allauth-0.62.0-released/). 1. User requests login by inputting their email address 2. Frontend sends request to `dj-rest-auth`'s endpoint `/login/code/` 3. A session gets...