Django + Tastypie - user_logged_in signal doesn't work
问题 I have a Tastypie ModelResource defining various endpoints which work as expected. I've now configured this ModelResource to have BasicAuthentication : class Meta: authentication = BasicAuthentication() I've defined a couple of test users through the Django Admin Interface. As per the Django 1.7 Documentation, I've created a signals.py in which I register a couple of test signals: from django.core.signals import request_finished from django.contrib.auth.signals import user_logged_in from