mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-03 22:59:15 +02:00
6 lines
210 B
Python
6 lines
210 B
Python
import django.dispatch
|
|
|
|
mutation_created = django.dispatch.Signal(providing_args=["mutation"])
|
|
mutation_updated = django.dispatch.Signal(
|
|
providing_args=["mutation", "old_is_approved", "new_is_approved"]
|
|
)
|