Nicolás Pérez Giorgi

Results 6 comments of Nicolás Pérez Giorgi

Hi all, We are having the same issue here, your plugin works great and I think it's the best tree view plugin for angular. If you could solve this issue...

Not sure if this is the best way, but to my understanding for some reason the Login API is requesting credentials. My solution was to override the default class and...

As far as I know it should work. I tested using django session and the SESSION_COOKIE_DOMAIN setting and the browser set the cookies correctly. To my knowledge the problem is...

Just to follow up on this. I extended the refresh token view and the login view in order to set the domain in the cookies: ```python from dj_rest_auth.views import LoginView...

I think you could write your own serializer: ```python # serializers.py from rest_framework import serializers class UserSerializer(serializers.ModelSerializer): class Meta: model = User fields = ( "email", ) ``` and then...

In my case it was easier to just do the serializer from scratch. But you should check the default serializer code. If it works for you I suppose it's okay...