Skip to content

Commit

Permalink
Django 4.0 Deprecation cleanup
Browse files Browse the repository at this point in the history
Closes #108
  • Loading branch information
jobec committed Sep 13, 2020
1 parent caa7eec commit 93bcb3f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion django_auth_adfs/signals.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
from django.dispatch import Signal

post_authenticate = Signal(providing_args=["user", "claims", "adfs_response"])
# Arguments sent with the signal:
# * user
# * claims
# * adfs_response
post_authenticate = Signal()

0 comments on commit 93bcb3f

Please sign in to comment.