Ruben Schmidt Mällberg
Ruben Schmidt Mällberg
Is this not related to the Django 1.10 change for the ModelBackend? Inactive users are not allowed to authenticate by default any more. You have to use AllowAllUsersModelBackend (https://docs.djangoproject.com/en/1.10/ref/contrib/auth/#django.contrib.auth.backends.AllowAllUsersModelBackend) To...
I solved it by doing the following: property tag that returns the serializer class ``` python @property def activity_object_serializer_class(self): from .serializers import FooSerializer return FooSerializer ``` Then used this to...
@X17 I am currently only using it for aggregated feed. I am actually not sure if it works properly with the other feeds.