Profiles are saved after the user

This commit is contained in:
Yohann D'ANELLO 2020-02-27 15:41:15 +01:00
parent 3c52c1d002
commit 125f437345
1 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
from django.apps import AppConfig
from django.conf import settings
from django.db.models.signals import pre_save
from django.db.models.signals import post_save
from django.utils.translation import gettext_lazy as _
from .signals import save_user_note
@ -17,7 +17,7 @@ class MemberConfig(AppConfig):
"""
Define app internal signals to interact with other apps
"""
pre_save.connect(
post_save.connect(
save_user_note,
sender=settings.AUTH_USER_MODEL,
)