mirror of
https://github.com/jazzband/django-avatar.git
synced 2026-05-15 11:03:11 +00:00
5 lines
175 B
Python
5 lines
175 B
Python
import django.dispatch
|
|
|
|
|
|
avatar_updated = django.dispatch.Signal(providing_args=["user", "avatar"])
|
|
avatar_deleted = django.dispatch.Signal(providing_args=["user", "avatar"])
|