Last active
July 1, 2021 12:12
-
-
Save kylefox/177091bd8e4d88ac0cc19496064fd7d3 to your computer and use it in GitHub Desktop.
Connecting Django Signals using the AppConfig ready handler: https://docs.djangoproject.com/en/1.10/ref/applications/#django.apps.AppConfig.ready
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
default_app_config = 'cn.apps.users.config.UsersAppConfig' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.apps import AppConfig | |
class UsersAppConfig(AppConfig): | |
name = 'cn.apps.users' | |
def ready(self): | |
import signals # noqa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.dispatch import receiver | |
from django.db.models.signals import post_save, pre_delete | |
from django.contrib.auth.models import User | |
from .models import UserProfile | |
@receiver(post_save, sender=User, dispatch_uid="users.create_user_profile") | |
def create_user_profile(**kwargs): | |
""" | |
Automatically create a UserProfile for any newly created User. | |
""" | |
user = kwargs.get('instance') | |
if not hasattr(user, 'profile'): | |
UserProfile.objects.create(user=user) | |
@receiver(pre_delete, sender=UserProfile, | |
dispatch_uid="profiles.delete_profile_image") | |
def delete_profile_image(**kwargs): | |
""" | |
Deletes the UserProfile.image file. | |
""" | |
kwargs.get('instance').image.delete(save=False) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks guys, this has solved my issue with signals in Django 3