You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For my particular case, I have created an "accounts" app where I put all my accounts related files. In the __init__.py for the app, I put the following delightful monkey patch 🙉
from invitations import adapters
def new_get_invitations_adapter():
from allauth.account.adapter import get_adapter
return get_adapter()
adapters.get_invitations_adapter = new_get_invitations_adapter
I want to override InvitationAdapter
Add get
AttributeError: 'BaseInvitationsAdapter' object has no attribute 'get_user_signed_up_signal'
The text was updated successfully, but these errors were encountered: