mirror of
https://github.com/Ai-hack-MAGNUM-OPUS/backend.git
synced 2024-11-24 09:13:44 +03:00
22 lines
628 B
Python
22 lines
628 B
Python
from django.db.models.signals import post_save
|
|
from django.dispatch import receiver
|
|
|
|
from checker.models import Docx, WordDocx
|
|
from checker.tasks import process_file, process_word, highlight_file
|
|
|
|
|
|
@receiver(post_save, sender=Docx)
|
|
def create_docs(sender, instance, created, **kwargs):
|
|
if created:
|
|
process_file.apply_async(kwargs={"pk": instance.pk})
|
|
highlight_file.apply_async(kwargs={"pk": instance.pk})
|
|
return
|
|
|
|
|
|
@receiver(post_save, sender=WordDocx)
|
|
def create_docs(sender, instance, created, **kwargs):
|
|
if created:
|
|
process_word.apply_async(kwargs={"pk": instance.pk})
|
|
return
|
|
|