mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
8b040ff930
* Closes #12129: Enable automatic synchronization of objects when DataFiles are updated * Cleanup
22 lines
514 B
Python
22 lines
514 B
Python
from django.dispatch import Signal, receiver
|
|
|
|
__all__ = (
|
|
'post_sync',
|
|
'pre_sync',
|
|
)
|
|
|
|
# DataSource signals
|
|
pre_sync = Signal()
|
|
post_sync = Signal()
|
|
|
|
|
|
@receiver(post_sync)
|
|
def auto_sync(instance, **kwargs):
|
|
"""
|
|
Automatically synchronize any DataFiles with AutoSyncRecords after synchronizing a DataSource.
|
|
"""
|
|
from .models import AutoSyncRecord
|
|
|
|
for autosync in AutoSyncRecord.objects.filter(datafile__source=instance).prefetch_related('object'):
|
|
autosync.object.sync(save=True)
|