Hi, I found a little bug, same as https://github.com/knaperek/djangosaml2/issues/37 the post_authenticated signal is not sent. Line: https://github.com/knaperek/djangosaml2/blob/master/djangosaml2/views.py#L320 Instead of `user` sender should be `user.__class__`. Next to this, it would be nice to have the request as well. Suggested fix: Change line 320 to: `post_authenticated.send_robust(sender=user.__class__, instance=user, session_info=session_info, request=request)`