Anuj Sharma
Anuj Sharma
``` debug($_FILES['icon']['tmp_name'] ``` gives ``` /tmp/phpFVPLjq ``` Using Linux
Also facing the same ValidationError
@Gagaro Here is the migration file generated in my project ``` operations = [ migrations.AddField( model_name='question', name='deleted_by_cascade', field=models.BooleanField(default=False, editable=False), ), ] ```
I am getting the error while extending `SafeDeleteQueryset`. I have a queryset like ``` class MyQuerySet(SafeDeleteQueryset): def active(self): return self.filter(is_active=True) ``` and the manager be like ``` class MyManager(SafeDeleteManager): def...
@Safiyya I'm not able to pass content with the stickyPopover in Angular 6. I'm using it in the template like below ``` {{ p.info.title }} {{ p.info.title }} ``` This...
@SwissKerim Degrading `rxjs` from 7 to 6 works for me.
The `PasswordResetForm` inside `dj_rest_auth/forms.py`, overrides the allauth save method ``` path = reverse( 'password_reset_confirm', args=[user_pk_to_url_str(user), temp_key], ) url = build_absolute_uri(request, path) context = { 'current_site': current_site, 'user': user, 'password_reset_url': url,...
Hi @tarricsookdeo Not yet. Please update if you get any solution.
There are two ways of changing the password. 1. User is authenticated (change password) 2. User is not authenticated (reset password) **In case 1**: If the user is authenticated, they...
> I think allowing a social-auth user to change their password on an existing session makes the app less secure. For example, if a user creates their account with FB...